2. Array implementation of stacks
Table of contents
- Structure of an array based stack
- Implementing the stack class using an array
- Determining the size of the stack
- Checking if the stack is empty
- Accessing the top of the stack
- Pushing an item onto the stack
- Popping an item from the top of the stack
- Design a stack using an array
- Design two stacks in an array