Which of the following traversal techniques lists the nodes of a binary search…
2018
Which of the following traversal techniques lists the nodes of a binary search tree in ascending order?
- A.
Postorder
- B.
Preorder
- C.
Inorder
- D.
None of the above
Attempted by 1054 students.
Show answer & explanation
Correct answer: C
In a Binary Search Tree (BST), the Inorder traversal (Left → Root → Right) visits nodes in ascending (sorted) order.