Stack data structure
Stack Data Structure (Introduction and Program)
Stack is a linear data structure which 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).
Mainly the following three basic operations are performed in the stack:
- Push: Adds an item in the stack. If the stack is full, then it is said to be an Overflow condition.
- Pop: Removes an item from the stack. The items are popped in the reversed order in which they are pushed. If the stack is empty, then it is said to be an Underflow condition.
- Peek or Top: Returns top element of stack.
- isEmpty: Returns true if stack is empty, else false.
How to understand a stack practically?
There are many real-life examples of a stack. Consider the simple example of plates stacked over one another in a canteen. The plate which is at the top is the first one to be removed, i.e. the plate which has been placed at the bottommost position remains in the stack for the longest period of time. So, it can be simply seen to follow LIFO/FILO order.
There are many real-life examples of a stack. Consider the simple example of plates stacked over one another in a canteen. The plate which is at the top is the first one to be removed, i.e. the plate which has been placed at the bottommost position remains in the stack for the longest period of time. So, it can be simply seen to follow LIFO/FILO order.
Time Complexities of operations on stack:
push(), pop(), isEmpty() and peek() all take O(1) time. We do not run any loop in any of these operations.
Applications of stack:
- Balancing of symbols
- Infix to Postfix /Prefix conversion
- Redo-undo features at many places like editors, photoshop.
- Forward and backward feature in web browsers
- Used in many algorithms like Tower of Hanoi, tree traversals, stock span problem, histogram problem.
- Other applications can be Backtracking, Knight tour problem, rat in a maze, N queen problem and sudoku solver
- In Graph Algorithms like Topological Sorting and Strongly Connected Components
Implementation:
There are two ways to implement a stack:
There are two ways to implement a stack:
- Using array
- Using linked list
-: write a program in c++ stack data structure:-
| /* C++ program to implement basic stack    operations */#include <bits/stdc++.h>  usingnamespacestd;  #define MAX 1000  classStack {     inttop;  public:     inta[MAX]; // Maximum size of Stack      Stack() { top = -1; }     boolpush(intx);     intpop();     intpeek();     boolisEmpty(); };  boolStack::push(intx) {     if(top >= (MAX - 1)) {         cout << "Stack Overflow";         returnfalse;     }     else{         a[++top] = x;         cout << x << " pushed into stack\n";         returntrue;     } }  intStack::pop() {     if(top < 0) {         cout << "Stack Underflow";         return0;     }     else{         intx = a[top--];         returnx;     } } intStack::peek() {     if(top < 0) {         cout << "Stack is Empty";         return0;     }     else{         intx = a[top];         returnx;     } }  boolStack::isEmpty() {     return(top < 0); }  // Driver program to test above functions intmain() {     classStack s;     s.push(10);     s.push(20);     s.push(30);     cout << s.pop() << " Popped from stack\n";      return0; | 
Pros: Easy to implement. Memory is saved as pointers are not involved.
Cons: It is not dynamic. It doesn’t grow and shrink depending on needs at runtime.
Cons: It is not dynamic. It doesn’t grow and shrink depending on needs at runtime.
Output :
10 pushed into stack 20 pushed into stack 30 pushed into stack 30 popped from stack
                                           Created by 
                                        Nilesh chouhan
This topic related details to contact my Gmail :-.  
chouhannilesh2002@gmail.com

 
 
Comments
Post a Comment