You are on page 1of 15

Data Structures

Topic: Tree Traversal

By
Ravi Kant Sahu
Asst. Professor,
Lovely Professional University, Punjab
Contents
• Introduction
• Representing Binary Tree in Memory
• Linked Representation
• Sequential Representation
• Traversing Binary Tree
• Preorder
• Inorder
• Postorder
• Traversal algorithms using Stacks
• Review Questions
Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India
Introduction
• Trees are non-linear data structures.

• Trees can be represented in memory using linked list


(linked representation) and arrays (sequential
representation).

• One should have direct access to the root R of T and,


given a node N of T, one should have direct access to
the children of N.

Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India


Linked Representation of Binary Tree

• A pointer variable ROOT and three parallel arrays


(INFO, LEFT and RIGHT) are used.
• Each node N of Tree T corresponds to a location K such
that:
(1) INFO[K] contains the data at the node N.
(2) LEFT [K] contains the location of the left child of node N.
(3) RIGHT[K] contains the location of the right child of node
N.

Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India


• If any subtree is empty then corresponding pointer will
contain the NULL value.

• If Tree is empty then Root will contain NULL.

• An entire record may be stored at the node N.

Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India


Linked Representation

INFO LEFT RIGHT


ROOT 2 0

A 6 4

E 0 0

10 C 0 9
AVAIL
8

B 7 3

D 0 0

F 0 0

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)
Sequential Representation of Binary Tree

• Efficient for the tree T that is complete or nearly


complete.

• Use of only a single linear array TREE such that:


(a) The Root of T is stored in TREE [1].
(b) If a node N occupies Tree [K], then its left child is stored
in TREE [2*K] and right child is stored in TREE [2*K + 1].

Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India


Traversing Binary Trees
• There are three standard ways of traversing a binary tree.
• Preorder
1. Process the Root R.
2. Traverse the left subtreeof R in Preorder.
3. Traverse the right subtreeof R in Preorder.
• Postorder
1. Traverse the left subtreeof R in Postorder.
2. Traverse the right subtreeof R in Postorder.
3. Process the Root R.
• Inorder
1. Traverse the left subtreeof R in Inorder.
2. Process the Root R.
3. Traverse the right subtreeof R in Inorder.
Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India
Traversal Algorithms using
STACKS
Preorder Traversal of Binary Tree
PREORDER (INFO, LEFT, RIGHT, ROOT )
1. Set TOP = 1, STACK[1] = NULL and PTR = ROOT.
2. Repeat Steps 3 to 5 while PTR != NULL:
3. Apply PROCESS to INFO[PTR].
4. If RIGHT[PTR] != NULL, then
Set TOP = TOP+1 and
STACK[TOP] = RIGHT[PTR].
5. If LEFT[PTR] != NULL, then
Set PTR = LEFT[PTR]
Else: Set PTR = STACK[TOP] and TOP = TOP-1.
6. Exit.
Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India
Inorder Traversal of Binary Tree
INORDER (INFO, LEFT, RIGHT, ROOT )
1. Set TOP = 1, STACK[1] = NULL and PTR = ROOT.
2. Repeat while PTR != NULL:
(a) Set TOP = TOP+1. and STACK[TOP] = PTR.
(b) Set PTR = LEFT[PTR].
3. Set PTR = STACK [TOP] and TOP = TOP – 1.
4. Repeat Step 5 to 7 while PTR != NULL:
5. Apply PROCESS to INFO[PTR].
6. If RIGHT[PTR] != NULL, then:
(a) Set PTR = RIGHT[PTR].
(b) Go to Step 2.
7. Set PTR = STACK[TOP] and TOP = TOP-1.
8. Exit.

Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India


Postorder Traversal of Binary Tree
POSTORDER (INFO, LEFT, RIGHT, ROOT )
1. Set TOP = 1, STACK[1] = NULL and PTR = ROOT.
2. Repeat Steps 3 to 5 while PTR != NULL:
3. Set TOP = TOP+1 and STACK [TOP] = PTR.
4. If RIGHT[PTR] != NULL, then
Set TOP = TOP+1 and STACK[TOP] =
RIGHT[PTR].
5. Set PTR = LEFT[PTR].
6. Set PTR = STACK[TOP] and TOP = TOP-1.
7. Repeat while PTR>0:
(a) Apply PROCESS to INFO[PTR].
(b) Set PTR = STACK[TOP] and TOP = TOP–1.
8. If PTR < 0, then:
(a) Set PTR = -PTR.
(b) Go to Step 2.
9. Exit.
Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India
Questions
Review Questions
• Given Inorder and Post order Traversal of a binary tree:
Inorder: C K R G M T P D S
Postorder: C K G T P M S D R
Find out the preorder traversal of the Tree.

• What is the maximum size of array required to represent a tree


with height h, using sequential representation?

• Sequential representation of tree is more efficient than linked.


When?

Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India


Review Questions
• Given Inorder and Preorder Traversal of a binary tree:
Preorder: L, G, D, C, M, H, T, K
Inorder: G, D, L, C, H, T, M, K
Construct the binary tree and find out the Postorder traversal of the
Tree.

• Given Inorder and Post order Traversal of a binary tree:


Postorder: E, F, L, G, D, N, P
Inorder: G, E, L, F, P, D, N
Construct the binary tree and find out the Preorder traversal of the
Tree.
Ravi Kant Sahu, Asst. Professor @ LPU Phagwara (Punjab) India

You might also like