This post is completed by 3 users

  • 1
Add to List
Beginner

177. Tree Traversals

There are multiple ways to in which you can traverse a tree. In this article we will see these traversals in detail. If you are new to trees then I would recommend that you pay close attention to this article because you will be solving almost all the problems on tree by using one or more of these traversals.

Here we will discuss the recursive approach, we will have separate posts for Iterative or Non-recursive approach.

Traversals:

Tree Traversals

 

In every traversal we visit the tree in certain order. lets  discuss them in detail.

Preorder Traversal: ( Read about non-recursive approach of Preorder Traversal)

  1. Visit the root.
  2. Visit the left-subtree.
  3. Visit the right-subtree.

Inorder Traversal: ( Read about non-recursive approach of Inorder Traversal)

  1. Visit the left-subtree.
  2. Visit the root.
  3. Visit the right-subtree.

Postorder Traversal: ( Read about non-recursive approach of Postorder Traversal)

  1. Visit the right-subtree.
  2. Visit the left-subtree.
  3. Visit the root.

Click here to read about Breadth-First Search and Depth-First Search.

Code:


Output:

Inorder Traversal:4 2 5 1 6 3 7
Preorder Traversal:1 2 4 5 3 6 7
Postorder Traversal:7 6 3 5 4 2 1