Interface | Description |
---|---|
Tree<K extends java.lang.Comparable<K>,V> |
This interface describes the interface for both empty and non-empty search
trees.
|
Class | Description |
---|---|
EmptyTree<K extends java.lang.Comparable<K>,V> |
This class is used to represent the empty search tree: a search tree that
contains no entries.
|
NonEmptyTree<K extends java.lang.Comparable<K>,V> |
This class represents a non-empty search tree.
|
SearchTreeMap<K extends java.lang.Comparable<K>,V> |
This class provides a partial implementation of the Map interface.
|