Package | Description |
---|---|
components.binarytree |
BinaryTree data structure component family and their implementations. |
Modifier and Type | Interface and Description |
---|---|
interface |
BinaryTree<T>
Additional functionality upon the bare-bones functionality afforded by the
BinaryTreeKernel interface. |
Modifier and Type | Class and Description |
---|---|
class |
BinaryTreeNL<T>
BinaryTree implemented as a recursive data structure, not layered on
any other components. |
class |
BinaryTreeSecondary<T>
Abstract class providing the implementation of all of the layered secondary
methods that were defined in the
BinaryTree interface, as well as the
implementation for equals , toString , and hashCode
methods. |