Question: The following numbers are inserted in a Binary Search Tree (in this order): 7, 8, 3, 2,4, 1 What information is printed on screen when

The following numbers are inserted in a Binary Search Tree (in this order): 7, 8, 3, 2,4, 1 What information is printed on screen when traversing the tree with the algorithm shown below? function traverse(T) if(T.root! =NULL) traverse(T.right) traverse(T.left) print(T.root) end function Choose ONE option: a. 123478 b. 841237 C. 124387 d. None of these answers e. 738241
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
