Traversing a Binary Tree
There are multiple ways to traverse a tree each one giving a different result.
Pre-order, NLR
In this order a node visited before its left and right subtree is traversed.
- Visit the current node.
- Recursively traverse the current node’s left subtree.
- Recursively traverse the current node’s right subtree.

Post-order, LRN
In this order a node is visited after its left and right subtree has been traversed.
- Recursively traverse the current node’s left subtree.
- Recursively traverse the current node’s right subtree.
- Visit the current node.

In-order, LNR
In this order a node is visited in between the traversal of its left and right subtree.
- Recursively traverse the current node’s left subtree.
- Visit the current node.
- Recursively traverse the current node’s right subtree.

Last updated on