https://github.com/chinnanj666/data-structure-stack-using-python
data structures-stacks using python.
https://github.com/chinnanj666/data-structure-stack-using-python
data-structures python3 stacks
Last synced: 3 months ago
JSON representation
data structures-stacks using python.
- Host: GitHub
- URL: https://github.com/chinnanj666/data-structure-stack-using-python
- Owner: chinnanj666
- Created: 2024-09-16T09:40:18.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-23T16:43:57.000Z (8 months ago)
- Last Synced: 2024-10-18T13:14:12.514Z (8 months ago)
- Topics: data-structures, python3, stacks
- Language: Python
- Homepage: https://github.com/chinnanj666/Data-structure-stack-using-python.git
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stack Data Structure:
A Stack is a linear data structure that follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out). LIFO implies that the element that is inserted last, comes out first and FILO implies that the element that is inserted first, comes out last.STACK
![]()
# What is Stack Data Structure?
A stack is a linear data structure that follows the Last-In-First-Out (LIFO) principle. It behaves like a stack of plates, where the last plate added is the first one to be removed.