Which of the following ways is a in-order traversal?
Options
- Root->left sub tree-> right sub tree
- Root->right sub tree-> left sub tree
- right sub tree-> left sub tree->Root
- left sub tree-> root->right sub tree
CORRECT ANSWER : left sub tree-> root->right sub tree
Write your comments