Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
607 B

# Stack
Stack is a linear collection of items where items are inserted and removed in a particular order. Stack is also called a LIFO Data Structure because it follows the "Last In First Out" principle i.e. the item that is inserted in the last is the one that is taken out first.
Visit the following resources to learn more:
- [@video@Stack Data Structure | Illustrated Data Structures](https://www.youtube.com/watch?v=I5lq6sCuABE)
- [@video@Stack in 3 minutes](https://www.youtube.com/watch?v=KcT3aVgrrpU)
- [@course@Stack Data Structure](https://www.coursera.org/lecture/data-structures/stacks-UdKzQ)