Queue
data structure component family and their implementations.See: Description
Interface | Description |
---|---|
Queue<T> |
Additional functionality upon the bare-bones functionality afforded by the
QueueKernel interface. |
QueueKernel<T> |
Queue kernel component containing method headers and contracts for
all methods that will directly interact with the label representations of all
Queue implementations. |
Class | Description |
---|---|
Queue1L<T> |
An implementation of a Queue layered on a java.util.LinkedList.
|
QueueDL<T> |
An implementation of a Queue layered on the DoublyLinkedList component.
|
QueueSecondary<T> |
Abstract class providing the implementation of all of the layered secondary
methods that were defined in the Queue interface, as well as the
implementation for equals, toString, and hashCode methods.
|
Queue
data structure component family and their implementations.