Welcome to my journey of learning Data Structures & Algorithms!
Stacks & Queues
Python
Here is a Python implementation of a Stack and a Queue data structure. I’m currently in the process of building more theory in programming by learning Data Structures and Algorithms.
Stack – Follows the last in first out method (LIFO). Elements left most in list are last in.
Queue – Follows the first in first out method (FIFO). The video to the right shows this implementation — elements furthest right were first in. (Like a Line)