Stacks--Chapter 7
A stack is a data structure of ordered entries such that entries can only be inserted and removed at one end (called the top).
Examples: stack of cafeteria trays, stack of neatly folded shirts.
A stack is a Last-In/First-Out data structure. Entries are taken out of the stack in the reverse order of their insertion.