Are you sure you're getting this? Could you figure out the right sequence for this list?
Select the proper order of an in-order traversal for a Binary Search Tree:
Press the below buttons in the order in which they should occur. Click on them again to un-select.
Options:
- Visit the root.
- Traverse the left subtree, i.e., call Inorder(left-subtree)
- Traverse the right subtree, i.e., call Inorder(right-subtree)