Package | Description |
---|---|
bag |
Provides Carrano code to support a bag data structure.
|
Modifier and Type | Method and Description |
---|---|
Node<T> |
Node.next()
Getter for next.
|
Modifier and Type | Method and Description |
---|---|
void |
Node.setNext(Node<T> newNext)
setter for next
|
Constructor and Description |
---|
Node(T dataPortion,
Node<T> nextNode)
Node constructor which sets its data to be dataPortion and its following
node to be nextNode.
|