Class ADT.Stack
- Description
This class implements a simple stack. Instead of adding and removing elements to an array, and thus making it vary in size for every push and pop operation, this stack tries to keep the stack size constant. If however the stack risks to overflow, it will allocate double its current size, i.e. pushing an element on an full 32 slot stack will result in a 64 slot stack with 33 elements.
- Method create
ADT.Stack ADT.Stack(
int
|void
initial_size
)- Description
An initial stack size can be given when a stack is cloned. The default value is 32.