Package | Description |
---|---|
components.stack |
Stack data structure component family and their implementations. |
Modifier and Type | Interface and Description |
---|---|
interface |
Stack<T>
Additional functionality upon the bare-bones functionality afforded by the
StackKernel interface. |
Modifier and Type | Class and Description |
---|---|
class |
Stack1L<T>
An implementation thinly layered on top of a java.util.Stack.
|
class |
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.
|
class |
StackSL<T>
An implementation of a stack layered on top of the component
SinlgyLinkedList.
|