Stack
data structure component family and their implementations.See: Description
Interface | Description |
---|---|
Stack<T> |
Additional functionality upon the bare-bones functionality afforded by the
StackKernel interface. |
StackKernel<T> |
Stack kernel component containing method headers and contracts for
all methods that will directly interact with the label representations of all
Stack implementations. |
Class | Description |
---|---|
Stack1L<T> |
An implementation thinly layered on top of a java.util.Stack.
|
StackSecondary<T> |
Abstract class providing the implementation of all of the layered secondary
methods that were defined in the Stack interface, as well as the
implementation for equals, toString, and hashCode methods.
|
StackSL<T> |
An implementation of a stack layered on top of the component
SinlgyLinkedList.
|
Stack
data structure component family and their implementations.