Introduction to Stacks and Queues
Stack
A stack is an ordered list (Data Structure) in which all insertion and deletion are done at one end. It is a First In Last Out (FILO). Top is a pointer pointing to the top most element of the stack.
Applications of Stack
Recursion
Post fix ev...
vaibhavkumar.hashnode.dev2 min read