What is Stack?
The stack data structure is a LIFO (Last In First Out) data structure. It enables us to insert and remove elements in a certain order. Stack lets you add and remove elements from the top of the stack.
Types of Operations in Stack
- Stack creation
- Push
- Pop
- Size
Practice Coding Question
- Stack using Array
- Stack using Linked List
- Prefix Expression Evaluation
- Postfix Expression Evaluation
- Convert Infix to Prefix Expression
- Convert Infix to Postfix Expression
0 Comments