Learn Stack Data-Structure From Scratch with Interview Questions
Stack is a linear Data-Structure following First In Last Out(FILO) order ie. The last element in a stack will be removed first.
Operations on a Stack -
push() - pushes an element in the stack.
pop() - removes an element from the top of the stack.
...
blog.ratishfolio.com3 min read