Array Stacks | Contents |
ArrayStack is an alternative implementation of a mutable stack which is backed by an Array that gets re-sized as needed. It provides fast indexing and is generally slightly more efficient for most operations than a normal mutable stack.
Next: Hash Tables
Array Stacks | Contents |