- parent - Variable in class TreeNode
-
This instance variable is a reference to the parent of the current TreeNode
- Person<K extends java.lang.Comparable<? super K>> - Class in <Unnamed>
-
This class will be used as the element type that will be inserted into our HashTable.
- Person(String, String, int, int, int, K) - Constructor for class Person
-
This constructor is used by the copy method of this class
- Person(K) - Constructor for class Person
-
This is the constructor for the class.
- postOrder(TreeNode<E, K>) - Method in class TreeElementIterator
-
A recursive method that traverses the binary search tree rooted at the
specified treeNode in post-order, adding the visited nodes
to the treeNodes Vector.
- preOrder(TreeNode<E, K>) - Method in class TreeElementIterator
-
A recursive method that traverses the binary search tree rooted at the
specified treeNode in pre-order, adding the visited nodes
to the treeNodes Vector.