| Class | Description |
|---|---|
| LinkedStack |
This is a linked implementation of a stack.
|
| Stack |
Stack is an abstract class for all stack implementations.
|
| StackFactory |
This class is used for its factory method getStack.
|
| StackShifter |
StackShifter implements a stack by shifting elements on every
push or pop.
|
| StackWithTopPointer |
StackWithTopPointer implements a stack in an array with a top pointer.
|