Question: 2. (10 pts. Consider a general linked-structured binary search tree (BST) implementation for the sorted map ADT. (Note that general BSTs may not satisfy the

2. (10 pts. Consider a general linked-structured binary search tree (BST) implementation for the sorted map ADT. (Note that general BSTs may not satisfy the height-balance property.) Algorithm 1 provides the pseudocode for the constructor of a node in a BST. Algorithm 1 NODE(k, w, left, right, parent) 1: W new node 2: w.key 3: w.value 4: w.left left 5: w.right right 6: w.parent parent 7: return w (6 pts.] Order the statements with the corresponding traversal. Write 1 for the first, 2 for second, and 3 for third. TRAVERSAL(w.left) VISIT(W) TRAVERSAL(w.right) preorder inoriler postorder
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
