Multiple Choice
Consider the operation of deleting the root of a binary search tree.If the root has one child,then
A) the root of the subtree should be recursively deleted
B) the element stored in the root node should be replaced with null
C) the reference to the root of the tree should be set to point to the one child
D) the operation should be recursively performed on the one subtree of the root
Correct Answer:

Verified
Correct Answer:
Verified
Q2: The heap sort method has a worst
Q3: The depth of a binary tree<br>A) is
Q4: A binary tree with depth d is
Q5: A sorting algorithm based on a priority
Q6: The length of the longest path from
Q8: Assuming a Node class<br>class Node<br>{<br>int element;<br>Node left,right;<br>Node(int
Q9: A complete binary tree with N nodes
Q10: Consider the operation of deleting the root
Q11: A binary tree traversal method that recursively
Q12: A binary tree with no root<br>A) must