|
Class Summary |
| LinkedList |
It is assumed that this class will always be subclassed and that insert and some get
function will be defined based on insert() and getElt(). |
| LinkedListElt |
|
| LinkedListEnumeration |
This class allows public access to list traversals. |
| TESTList |
This class tests that LinkedList and Vector Lists perform as expected. |
| TreeList |
This list structure is based on a modified binary tree design. |
| TreeListEnumeration |
This class allows public access to list traversals. |
| VectorList |
This is a variation of the original byucc.jhdl.base.list.LinkedList, that provides
improved efficiency of memory usage and access time by utilizing java.util.Vector. |
| VectorListEnumeration |
This class allows public access to list traversals. |