- GenealogyTree - Class in <Unnamed>
-
A general tree that is can be used to keep
track of parent child relationships between data.
- GenealogyTree() - Constructor for class GenealogyTree
-
- get(int) - Method in class LinkedList
-
- get(int) - Method in interface ListADT
-
Returns a reference to the item at the specified position.
- getAncestorStack(String) - Method in class GenealogyTree
-
return a Stack that contains the ancestors of the node with matching data
The root is at the bottom of the stack and the matching node is at the top
and the stack contains all ancestors of the matching data node.
- getChildren() - Method in class TreeNode
-
Return the list of children.
- getData() - Method in class Listnode
-
Returns a reference to data item for this node.
- getData() - Method in class TreeNode
-
Return the data value associated with
this node.
- getHeaderNode() - Method in class LinkedList
-
Returns a reference to the header node for this linked list.
- getNext() - Method in class Listnode
-
Returns a reference to the next node after this node.
- getRoot() - Method in class GenealogyTree
-