| Package | Description |
|---|---|
| tree |
| Class and Description |
|---|
| EmptyTree
This class is used to represent the empty search tree: a search tree that
contains no entries.
|
| NonEmptyTree
This class represents a non-empty search tree.
|
| PolymorphicBST
This class represents the polymorphic tree.
|
| TraversalTask
When we perform a traversal of a tree, we call the
performTask method to process each key,value pair in
the tree.
|
| Tree
This interface describes the interface for both empty and non-empty search
trees.
|
| TreeIsEmptyException
This is a checked exception, used internally by SearchTree nodes, to signal that a tree
has no minimum or maximum element.
|