Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 325 Bytes

stacks.md

File metadata and controls

13 lines (9 loc) · 325 Bytes

Stacks

Top can only be added or removed

  • LIFO (last in, first out)

serves as a collection of elements, with two main principal operations:

Operations used:

Push:

- which adds an element to the collection

Pop:

- which removes the most recently added element that was not yet removed.