11.3 Tree Traversal

Preorder

Let TT be an ordered rooted tree with root rr. It TT consists only of rr, then rr is the preorder trasversal of TT. Otherwise, suppose that T1,T2,TnT_1, T_2, \cdots T_n are the subtrees at rr from left to right in TT. The preorder trasveral begins by visiting T1T_1. It continues by traversing T1T_1 in preorder, then T2T_2 in preorder, and so on, until TnT_n is traversed in preorder.

Root => Left => Right

Graph

Algorithem 1 Preorder traversal
procedure preorder(T: ordered rooted tree)
r := root of T
list r
for each child c of r from left to right
  T(c) := subtree with c as its root
  procedure(T(c))

Inorder

Let TT be an ordered rooted tree with root rr. It TT consists only of rr, then rr is the inorder trasversal of TT. Otherwise, suppose that T1,T2,TnT_1, T_2, \cdots T_n are the subtrees at rr from left to right in TT. The inorder trasveral begins by traversing T1T_1 in inorder, then visiting rr. It continues by traversing T2T_2 in inorder, then T3T_3 in inorder, ..., and finally TnT_n in order.

Left => Root => Right

Graph

Example

Graph

Solution

b,                        a, c,    d
e,                b, f,   a, c,    g,       d, h, i
j, e, k,          b, f,   a, c,    l, g, m, d, h, i
j, e, n, k, o, p, b, f,   a, c,    l, g, m, d, h, i
Algorithem 2 Inorder traversal
procedure inorder(T: ordered rooted tree)
r := root of T
if r is a leaf then list r
else
  l := first child of r from left to right
  T(l) := subtree with l as its root
  inorder(T(l))
  list r
  for each child c of r except l from left to right
    T(c) := subtree with c as its root
    inorder(T(c))

Postorder

Let TT be an ordered rooted tree with root rr. It TT consists only of rr, then rr is the postorder trasversal of TT. Otherwise, suppose that T1,T2,TnT_1, T_2, \cdots T_n are the subtrees at rr from left to right in TT. The postorder trasveral begins by traversing T1T_1 in postorder, then T2T_2 in postorder, ... then TnT_n in postorder, and ends by visiting rr.

Left => Right => Root

Graph

Example

Graph

Solution

b,       c, d,          a
e, f, b, c, g, h, i, d, a
j, k, e, f, b, c, l, m, g, h, i, d, a
j, n, o, p, k, e, f, b, c, l, m, g, h, i, d, a
Algorithem 3 Postorder traversal
procedure postorder(T: ordered rooted tree)
r := root of T
for each child c of r from left to right
  T(c) := subtree with c as its root
  postorder(T(c))
list r

Homework

p804: 8, 9

In Exercises 7–9 determine the order in which a preorder traversal visits the vertices of the given ordered rooted tree.
8. Graph

Solution

a, b, d, e, i, j, m, n, o, c, f, g, h, k, l, p

9. Graph

Solution

a, b, e, k, l, m, f, g, n, r, s, c, d, h, o, i, j, p, q