✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following function: function F(root,x) if (root!=NULL) if (x == root->data) After inserting the following numbers in a BST (in this order): 4, 2, 1, 3, 7, 5; function F was executed and the following data was print on screen: left left ---
What number was entered as input argument to this function?