Question: Problem 3 (3 points) Binary Search Tree (1) (1 point) Given the keys 16, 11, 5, 37, 15, 33, 27, 4, 13, create a binary

Problem 3 (3 points) Binary Search Tree (1) (1 point) Given the keys 16, 11, 5, 37, 15, 33, 27, 4, 13, create a binary search tree by using Tree-Insert repeatedly to insert the number one by one in the given order (show the successive steps); (2) (1 point) We can sort a given set of n numbers by first building a binary search tree containing these numbers (using TREE-INSERT repeatedly to insert the numbers one by one) and then printing the numbers by an inorder tree walk. What are the worst-case and best-case running times for this sorting algorithm? (3) (1 point) Is the operation of deletion commutative in the sense that deleting x and then y from a binary search tree leaves the same tree as deleting y and then x? Argue why it is or give a counterexample using the BST from (1)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
