An open API service indexing awesome lists of open source software.

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.

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.