In a BST, how do you find the minimum value node?
A. Traverse to the leftmost node from the root.
B. Traverse to the rightmost node from the root.
C. Find the node with the maximum value.
D. Find the node with the second highest value.
Answer: Option A
Join The Discussion