Interface | Description |
---|---|
StackInterface<T> |
An interface for the ADT stack.
|
Class | Description |
---|---|
LinkedStack<T> |
A class of stacks whose entries are stored in a chain of nodes.
|
Exception | Description |
---|---|
EmptyStackException |
Empty Stack Exception To be thrown by students when the Stack is accessed
when empty, such as when peeking or popping an empty stack.
|