| Interface | Description |
|---|---|
| Stack<E> |
Interface for a stack: a collection of objects that are inserted
and removed according to a last-in first-out schema.
|
| Class | Description |
|---|---|
| ArrayStack<E> |
Implementation of the stack ADT using a fixed-length array.
|
| Exercises | |
| Html | |
| Node<E> |
Node of a singly linked list, which stores references to its
element and to the next node in the list.
|
| NodeStack<E> | |
| Tester |
| Exception | Description |
|---|---|
| EmptyStackException |
Runtime exception thrown when one tries to perform operation top or
pop on an empty stack.
|
| FullStackException |
Runtime exception thrown when the capacity of the array used by an
ArrayStack has been exceeded.
|