2-D Binary Tree Design
- Similar to dynamic memory implementation of List
- Use a structural class Node
- Node has two pointers:
- Node has one data field:
- The two pointer fields allow navigation down the tree only
|
|
3-D Alternative Facilitates Navigators
- Node has three pointers:
- Node has one data field:
- The three pointer fields allow navigation throughout the tree
|