Question: Which traversal method of a binary tree can be used to retrieve nodes in non-decreasing order?
Options:
Correct Answer: In-order
Solution:
In-order traversal visits the left subtree, the root, and then the right subtree, which results in nodes being retrieved in non-decreasing order for binary search trees.