Close
Register
Close Window

Show Source |    | About   «  12.12. Dictionary Implementation Using a BST   ::   Contents   ::   12.14. Multiple Binary Trees  »

12.13. Binary Tree Guided Information Flow

12.13.1. Binary Tree Guided Information Flow

When writing a recursive method to solve a problem that requires traversing a binary tree, we want to make sure that we are visiting the required nodes (no more and no less).

So far, we have seen several tree traversals that visited every node of the tree. We also saw the BST search, insert, and remove routines, that each go down a single path of the tree. Guided traversal refers to a problem that does not require visiting every node in the tree, though it typically requires looking at more than one path through the tree. This means that the recursive function is making some decision at each node that sometimes lets it avoid visiting one or both of its children. The decision is typically based on the value of the current node. Many problems that require information flow on binary search trees are “guided” in this way.

Here is a problem that typically needs to visit more than just a single path, but not all of the nodes.

Settings

Proficient Saving... Error Saving
Server Error
Resubmit

12.13.2. Binary Search Tree Small Count Exercise

   «  12.12. Dictionary Implementation Using a BST   ::   Contents   ::   12.14. Multiple Binary Trees  »

Close Window