- next() - Method in class lab.util.NodeIterator
-
Returns the next node in the sequence.
- Node<E> - Class in lab.util
-
A simple node class for implementing singly linked sequences.
- Node(E, Node<E>) - Constructor for class lab.util.Node
-
Create a node holding the given data element and having
the given next node in the sequence.
- NodeIterator<E> - Class in lab.util
-
An iterator over Node
-based linked sequences.
- NodeIterator(Node<E>) - Constructor for class lab.util.NodeIterator
-
Create an iterator that starts iterating at the node
head