Chapter 20: Problem 11
The three common types of traversal with a binary tree are __________, __________, and __________.
Short Answer
Expert verified
Answer: The three common types of traversal with binary trees are inorder, preorder, and postorder.
In inorder traversal, the sequence is left subtree, root, and right subtree. The steps are:
1. Traverse the left subtree by recursively applying inorder traversal.
2. Visit the root node.
3. Traverse the right subtree by recursively applying inorder traversal.
In preorder traversal, the sequence is root, left subtree, and right subtree. The steps are:
1. Visit the root node.
2. Traverse the left subtree by recursively applying preorder traversal.
3. Traverse the right subtree by recursively applying preorder traversal.
In postorder traversal, the sequence is left subtree, right subtree, and root. The steps are:
1. Traverse the left subtree by recursively applying postorder traversal.
2. Traverse the right subtree by recursively applying postorder traversal.
3. Visit the root node.
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.