Package | Description |
---|---|
net.datastructures |
Modifier and Type | Method and Description |
---|---|
Node<E> |
Node.getNext() |
Modifier and Type | Method and Description |
---|---|
void |
Node.setNext(Node<E> newNext) |
Constructor and Description |
---|
Node(E e,
Node<E> n)
Creates a node with the given element and next node.
|