- Node<E> - Class in <Unnamed>
-
Node of a singly linked list, which stores references to its
element and to the next node in the list.
- Node(E) - Constructor for class Node
-
Creates a node with null references to its element and next node.
- Node(E, Node<E>) - Constructor for class Node
-
Creates a node with the given element and next node.
- NodeQueue<E> - Class in <Unnamed>
-
Realization of a queue by means of a singly-linked list of nodes.
- NodeQueue() - Constructor for class NodeQueue
-
Creates an empty queue.