Modifier and Type | Method and Description |
---|---|
Listnode<E> |
LinkedList.getHeaderNode()
Returns a reference to the header node for this linked list.
|
Listnode<E> |
Listnode.getNext()
Returns a reference to the next node after this node.
|
Constructor and Description |
---|
LinkedListIterator(Listnode<T> head)
Constructs a LinkedListIterator when given the first node
with data for a chain of nodes.
|
Listnode(E data,
Listnode<E> next)
Constructs a new list node with a link to the next node in a chain of
nodes.
|