What is Inorder Traversal ?
Inorder Traversal is a type of tree traversal technique which follows the Left-Root-Right pattern.
Left-Root-Right pattern
- The left subtree is traversed first.
- Then the root node for the subtree is traversed.
- Finally, the right subtree is traversed.
Top comments (0)