- BTnode<E> - Class in btree
-
A BTnode provides a node for a binary tree.
- BTnode(E, BTnode<E>, BTnode<E>) - Constructor for class btree.BTnode
-
Initialize a BTnode with a specified initial data and links
children.
- BTnode(E, BTnode<E>) - Constructor for class btree.BTnode
-
Initialize a BTnode with a specified initial data and link to
left child.
- BTnode(E) - Constructor for class btree.BTnode
-
Initialize a BTnode with a specified initial data and no children.
- BTnode.Visitor<E> - Interface in btree
-
This interface forces users of BTnode to provide a visit method to specify
how a node's data is handled when it is "visited".
- btree - package btree
-