Data Structures Tutorial

Data Structures Tutorial Asymptotic Notation Structure and Union Array Data Structure Linked list Data Structure Type of Linked list Advantages and Disadvantages of linked list Queue Data Structure Implementation of Queue Stack Data Structure Implementation of Stack Sorting Insertion sort Quick sort Selection sort Heap sort Merge sort Bucket sort Count sort Radix sort Shell sort Tree Traversal of the binary tree Binary search tree Graph Spanning tree Linear Search Binary Search Hashing Collision Resolution Techniques

Misc Topic:

Priority Queue in Data Structure Deque in Data Structure Difference Between Linear And Non Linear Data Structures Queue Operations In Data Structure About Data Structures Data Structures Algorithms Types of Data Structures Big O Notations Introduction to Arrays Introduction to 1D-Arrays Operations on 1D-Arrays Introduction to 2D-Arrays Operations on 2D-Arrays Strings in Data Structures String Operations Application of 2D array Bubble Sort Insertion Sort Sorting Algorithms What is DFS Algorithm What Is Graph Data Structure What is the difference between Tree and Graph What is the difference between DFS and BFS Bucket Sort Dijkstra’s vs Bellman-Ford Algorithm Linear Queue Data Structure in C Stack Using Array Stack Using Linked List Recursion in Fibonacci Stack vs Array What is Skewed Binary Tree Primitive Data Structure in C Dynamic memory allocation of structure in C Application of Stack in Data Structures Binary Tree in Data Structures Heap Data Structure Recursion - Factorial and Fibonacci What is B tree what is B+ tree Huffman tree in Data Structures Insertion Sort vs Bubble Sort Adding one to the number represented an array of digits Bitwise Operators and their Important Tricks Blowfish algorithm Bubble Sort vs Selection Sort Hashing and its Applications Heap Sort vs Merge Sort Insertion Sort vs Selection Sort Merge Conflicts and ways to handle them Difference between Stack and Queue AVL tree in data structure c++ Bubble sort algorithm using Javascript Buffer overflow attack with examples Find out the area between two concentric circles Lowest common ancestor in a binary search tree Number of visible boxes putting one inside another Program to calculate the area of the circumcircle of an equilateral triangle Red-black Tree in Data Structures Strictly binary tree in Data Structures 2-3 Trees and Basic Operations on them Asynchronous advantage actor-critic (A3C) Algorithm Bubble Sort vs Heap Sort Digital Search Tree in Data Structures Minimum Spanning Tree Permutation Sort or Bogo Sort Quick Sort vs Merge Sort Boruvkas algorithm Bubble Sort vs Quick Sort Common Operations on various Data Structures Detect and Remove Loop in a Linked List How to Start Learning DSA Print kth least significant bit number Why is Binary Heap Preferred over BST for Priority Queue Bin Packing Problem Binary Tree Inorder Traversal Burning binary tree Equal Sum What is a Threaded Binary Tree? What is a full Binary Tree? Bubble Sort vs Merge Sort B+ Tree Program in Q language Deletion Operation from A B Tree Deletion Operation of the binary search tree in C++ language Does Overloading Work with Inheritance Balanced Binary Tree Binary tree deletion Binary tree insertion Cocktail Sort Comb Sort FIFO approach Operations of B Tree in C++ Language Recaman’s Sequence Tim Sort Understanding Data Processing Applications of trees in data structures Binary Tree Implementation Using Arrays Convert a Binary Tree into a Binary Search Tree Create a binary search tree Horizontal and Vertical Scaling Invert binary tree LCA of binary tree Linked List Representation of Binary Tree Optimal binary search tree in DSA Serialize and Deserialize a Binary Tree Tree terminology in Data structures Vertical Order Traversal of Binary Tree What is a Height-Balanced Tree in Data Structure Convert binary tree to a doubly linked list Fundamental of Algorithms Introduction and Implementation of Bloom Filter Optimal binary search tree using dynamic programming Right side view of binary tree Symmetric binary tree Trim a binary search tree What is a Sparse Matrix in Data Structure What is a Tree in Terms of a Graph What is the Use of Segment Trees in Data Structure What Should We Learn First Trees or Graphs in Data Structures All About Minimum Cost Spanning Trees in Data Structure Convert Binary Tree into a Threaded Binary Tree Difference between Structured and Object-Oriented Analysis FLEX (Fast Lexical Analyzer Generator) Object-Oriented Analysis and Design Sum of Nodes in a Binary Tree What are the types of Trees in Data Structure What is a 2-3 Tree in Data Structure What is a Spanning Tree in Data Structure What is an AVL Tree in Data Structure Given a Binary Tree, Check if it's balanced B Tree in Data Structure Convert Sorted List to Binary Search Tree Flattening a Linked List Given a Perfect Binary Tree, Reverse Alternate Levels Left View of Binary Tree What are Forest Trees in Data Structure Compare Balanced Binary Tree and Complete Binary Tree Diameter of a Binary Tree Given a Binary Tree Check the Zig Zag Traversal Given a Binary Tree Print the Shortest Path Given a Binary Tree Return All Root To Leaf Paths Given a Binary Tree Swap Nodes at K Height Given a Binary Tree Find Its Minimum Depth Given a Binary Tree Print the Pre Order Traversal in Recursive Given a Generate all Structurally Unique Binary Search Trees Perfect Binary Tree Threaded Binary Trees Function to Create a Copy of Binary Search Tree Function to Delete a Leaf Node from a Binary Tree Function to Insert a Node in a Binary Search Tree Given Two Binary Trees, Check if it is Symmetric A Full Binary Tree with n Nodes Applications of Different Linked Lists in Data Structure B+ Tree in Data Structure Construction of B tree in Data Structure Difference between B-tree and Binary Tree Finding Rank in a Binary Search Tree Finding the Maximum Element in a Binary Tree Finding the Minimum and Maximum Value of a Binary Tree Finding the Sum of All Paths in a Binary Tree Time Complexity of Selection Sort in Data Structure How to get Better in Data Structures and Algorithms Binary Tree Leaf Nodes Classification of Data Structure Difference between Static and Dynamic Data Structure Find the Union and Intersection of the Binary Search Tree Find the Vertical Next in a Binary Tree Finding a Deadlock in a Binary Search Tree Finding all Node of k Distance in a Binary Tree Finding Diagonal Sum in a Binary Tree Finding Diagonal Traversal of The Binary Tree Finding In-Order Successor Binary Tree Finding the gcd of Each Sibling of the Binary Tree Greedy Algorithm in Data Structure How to Calculate Space Complexity in Data Structure How to find missing numbers in an Array Kth Ancestor Node of Binary Tree Minimum Depth Binary Tree Mirror Binary Tree in Data Structure Red-Black Tree Insertion Binary Tree to Mirror Image in Data Structure Calculating the Height of a Binary Search Tree in Data Structure Characteristics of Binary Tree in Data Structure Create a Complete Binary Tree from its Linked List Field in Tree Data Structure Find a Specified Element in a binary Search Tree Find Descendant in Tree Data Structure Find Siblings in a Binary Tree Given as an Array Find the Height of a Node in a Binary Tree Find the Second-Largest Element in a Binary Tree Find the Successor Predecessor of a Binary Search Tree Forest of a Tree in Data Structure In Order Traversal of Threaded Binary Tree Introduction to Huffman Coding Limitations of a Binary Search Tree Link State Routing Algorithm in Data Structure Map Reduce Algorithm for Binary Search Tree in Data Structure Non-Binary Tree in Data Structure Quadratic Probing Example in Hashing Scope and Lifetime of Variables in Data Structure Separate Chaining in Data Structure What is Dynamic Data Structure Separate Chaining vs Open Addressing Time and Space Complexity of Linear Data Structures Abstract Data Types in Data Structures Binary Tree to Single Linked List Count the Number of Nodes in the Binary Tree Count Total No. of Ancestors in a Binary Search Tree Elements of Dynamic Programming in Data Structures Find cost of tree with prims algorithm in data structures Find Preorder Successor in a Threaded Binary Tree Find Prime Nodes Sum Count in Non-Binary Tree Find the Right Sibling of a Binary Tree with Parent Pointers Find the Width of the Binary Search Tree Forest trees in Data Structures Free Tree in Data Structures Frequently asked questions in Tree Data Structures Infix, Postfix and Prefix Conversion Time Complexity of Fibonacci Series What is Weighted Graph in Data Structure What is the Advantage of Linear Search?

Application of Stack in Data Structures

In this article, we will discuss all the different applications of stack.

What is meant by stack?

The stack is a non-primitive linear data structure in which the insertion of the new data item and deletion of the existing data item is done only from one end, known as the top of the stack (TOS).

The top element is the most accessible element in a stack, and the bottom element is the least accessible element. The stack is widely used in different applications where data access follows the First In Last Out (FIFO) or Last In Fast Out (LIFO) mechanism.

The main applications of Stack data structure are listed below:

  • Recursion
  • Managing Function Calls
  • Data Reversing
  • Arithmetic Equations Evaluation
  • Algorithms (Depth First Search)
  • Undo and Redo Operations
  • Backward and Forward operations in Browser

Let us discuss the above applications of the stack data structure in brief:

1. Recursion – Recursion is defined as defining anything in terms of itself. It is the most powerful tool in the programming language. A function is called recursive if the statement in the function’s body calls the same function or another function.

Properties of Recursion:

  • Base Criteria – Base criteria defines the condition for the function calls to stop. If the base criteria are not defined within the function’s body, it will result in infinite function calls, and the program will never terminate itself.
  • Progressive Approach – The function calls or recursion should follow the progressive approach means on each function call, the program or function should come close to the base criteria. Otherwise, it will reach a non-terminating state.

    Let us now see how the stacked is used in recursion. To understand the following, we have taken an example to calculate the sum of n natural numbers using recursion, and the code of the same is given below
// Function to calculate the sum of n natural numbers using recursion
int sum_upto_n(int n)
{
    if (n <= 1) // Base condition
        return n;
    return n + sum_upto_n(n - 1); // Recursive function call
}

Suppose the value of n is 5. Now, let’s see how all the function calls are managed and evaluated.

Function callsEvaluationOperationsActivation record (Stack)
Sum_upto_n(5)5 + sum_upto_n(5-1)Push()5 + sum_upto_n(5-1)
Sum_upto_n(4)4 + sum_upto_n(4-1)Push()  4 + sum_upto_n(4-1) 5 + sum_upto_n(5-1)
sum_upto_n(3)3 + sum_upto_n(3-1)Push()  3 + sum_upto_n(3-1) 4 + sum_upto_n(4-1) 5 + sum_upto_n(5-1)
sum_upto_n(2)2 + sum_upto_n(2-1)Push()  2 + sum_upto_n(2-1) 3 + sum_upto_n(3-1) 4 + sum_upto_n(4-1) 5 + sum_upto_n(5-1)
sum_upto_n(1)return 1-  2 + sum_upto_n(2-1) 3 + sum_upto_n(3-1) 4 + sum_upto_n(4-1) 5 + sum_upto_n(5-1)
 return 2 + 1 = 3Pop()  3 + sum_upto_n(3-1) 4 + sum_upto_n(4-1) 5 + sum_upto_n(5-1)
 return 3 + 3 = 6Pop()  4 + sum_upto_n(4-1) 5 + sum_upto_n(5-1)
 return 4 + 6 = 10Pop()  5 + sum_upto_n(5-1)
 return 5 + 10 = 15Pop()Empty stack

From the above table, we can clearly understand how the recursion is managed using the stack data structure.

2. Managing function calls – The stack data structure is used to manage function calls. When multiple functions call each other, the stack plays a crucial role in managing all the function calls and giving the correct result.

Let us assume there are three functions A, B, and C. Assume that initially, function A is called by the main function, and in the body of the function A, a statement calls the function C, and in the body of function C, a statement calls the function B.

int main()int A()int B()int C()
{{{{
 // Statement 1 of main// Statement 1 of Areturn X++;// Statement 1 of C
 X = A() ; // calling Function AX = C(); // calling Function C}X = B(); // Calling function B
cout(X);X = X + 10; X = X % 10;
return 0;return X; return X;
}} }

When the main function calls the function A, the statements of the main function below the function call are pushed into the stack for later evaluation. Also, the function A calls the function B, and the statements of function A below the function call are pushed into the stack. Same for the function C, when the function C calls the function B, the statements below the function calls are pushed into the stack. Function B will not call any other function and will return the value of X after incrementing its value by 1. And the control will be again transferred to function C, and function C will execute all the remaining statements and return the value of X after evaluation. After that, the control will be transferred to function A, and it will execute all the remaining statements and return the value of X to the main function. In the end, the control will be again transferred to the main function, and it will print the value of X, and the program will terminate.

Different states of the stack are shown below:

Application of Stack

The pop operation is performed one by one.

We can conclude from the above figure that function A will only be complete after the completion of function C and function C will only be completed after the completion of function B. The main function will be completed last.

3. Data reversing – The stack data structure is used to reverse a set of values or data. The method of doing the same is explained below:

Consider a set a value = {12, 24, 5, 34, 45}

Now we push all the values one by one, and the stack after pushing all the values will look like as shown in the figure:

Application of Stack
Application of Stack

Now, we will perform the pop operation until our stack becomes empty. After completing all the pop operations, the order of the data is reversed, as shown in fig.

Conclusion – To reverse a set of values or data using a stack data structure, we need to push all the elements one after one and perform a pop operation until the stack is empty.

4. Arithmetic Expression Evaluation – As we know, the arithmetic expression is basically represented in three notations: Prefix, Infix, and Postfix (Polish) Notation.

The stack data structure is used to solve arithmetic operations. Postfix notation is the most suitable notation for the computer to solve or calculate any expression. It is the universally accepted notation for designing the Arithmetic and Logical Unit (ALU) of the CPU. Any expression entered into the computer is first converted into Postfix (Polish) notation, stored in a stack, and then evaluated.

The stack data structure is used to convert the expression written in one notation into another notation.

You can learn the conversion of expression by clicking the below links:

Infix Notation to Postfix Notation

< https://www.tutorialandexample.com/data-structure-infix-to-postfix-conversion >

Prefix Notation to Postfix Notation

< https://www.tutorialandexample.com/data-structure-prefix-to-postfix-conversion >

Now, let us look at how the expressions are evaluated using the stack data structure:

Q. Evaluate the following postfix expression:

P: 8 2 3 * 1 / + 4 1 * 2 / +

Ans. To solve the above expression, we scan all the symbols one by one, and for the values scanned, we perform the push operation, and for every arithmetic symbol, we perform the pop operation. The number of pop operations depends on the type of arithmetic symbol scanned, whether it is unary, binary, or tertiary. Here, we need to know that the top element of the stack is always operand 2, and the next element is operand 1. For any arithmetic symbol, we calculate as [operand 1 (arithmetic symbol) operand 2].

 Symbol ScannedOperation performedStack
0.  Top -> Null
1.8Push (8)Top -> 8
2.2Push (2)Top -> 2, 8
3.3Push (3)Top -> 3, 2, 8
4.*Pop () = 3 Pop () = 2 2 * 3 = 6 Push (6)Top -> 6, 8
5.1Push (1)Top -> 1, 6, 8
6./Pop () = 1 Pop () = 6 6 / 1 = 6 Push (6)Top -> 6, 8
7.+Pop () = 6 Pop () = 8 8 + 6 = 14 Push (14)Top -> 14
8.4Push (4)Top -> 4, 14
9.1Push (1)Top -> 1, 4, 14
10.*Pop () = 1 Pop () = 4 4 * 1 = 4 Push (4)Top -> 4, 14
11.2Push (2)Top -> 2, 4, 14
12./Pop () = 2 Pop () = 4 4 / 2 = 2 Push (2)Top -> 2, 14
13.+Pop () = 2 Pop () = 14 14 +2 = 16 Push (16)Top -> 16
14.NULLPop () = 16Top -> NULL

The above method shows how an expression written in postfix notation is evaluated using the stack data structure. For any numeric value, we perform a push operation. For any arithmetic symbol, we pop operations, then perform the calculation and push operation to push the calculated value into the stack.  In the last step, the symbol scanned is NULL. Hence, we perform the pop operation for the last time to get the result.

5. Algorithms (Depth First Search) – The Depth First Search (or Traversal) is used to search for an element in a Tree or Graph data structure. We do not have cycles in the tree, but we can have cycles in the graph so we may come to the same node again. While traversing a graph containing cycles, we use a Boolean visited array.

The standard DFS algorithm categorises each vertex as visited or not visited. A stack is used to implement the DFS algorithm. There are four steps to be followed by the DFS algorithm, which are given below:

  1. Starts by pushing any of the Graph’s vertices or Tree’s node into the stack
  2. Takes the top item of the stack and adds it to the visited list
  3. Creates a list of all the adjacent vertices of that node. And now adds one of the adjacent nodes which is not in the visited list to the top of the stack
  4. It keeps repeating step2 and 3 until the stack is empty.

To learn about the implementation of DFS, you can click on the given link below:

https://www.tutorialandexample.com/dfs-depth-first-search-algorithm-in-ds

Now, let us look at the mechanism behind the DFS with an example.

Q. Consider the following graph and perform DFS on it:

Application of Stack

Ans.

S no.Current NodeAdjacent nodeList of Visited nodeOperationStackRemarks
0.  NullPush(A)Top -> ASelecting node-A as the starting node
1.AB, SAPush (B)Top -> B, A 
2.BAA, BPop ()Top -> AAs we have no unvisited adjacent node of B, we will pop it from the stack and move to the previous, i. e., A.
3.AB, SA, BPush (S)Top -> S, AHere, S is the only unvisited adjacent node.
4.SA, C, GA, B, SPush (C)Top -> C, S, AWe first find the unvisited adjacent node and add it to the stack. Here C and G both are unvisited, and we can add any of both as per our choice.
5.CS, D, F, EA, B, S, CPush (D)Top -> D, C, S, AHere, F and D are both unvisited, and we select D.
6.DCA, B, S, C, DPop ()Top -> C, S, ANo, unvisited adjacent node. Hence, we pop D from the stack.
7.CS, D, F, EA, B, S, C, DPush (F)Top -> F, C, S, AHere, only F is unvisited, and we push it into the stack.
8.FC, GA, B, S, C, D, FPush (G)Top -> G, F, C, S, AOnly G is unvisited, and we push it into the stack.
9.GS, F, HA, B, S, C, D, F, GPush (H)Top -> H, G, F, C, S, AOnly H is unvisited, and we push it into the stack.
10.HE, GA, B, S, C, D, F, G, HPush (E)Top -> E, G, F, C, S, AOnly E is unvisited, and we push it into the stack.
11.EI, HA, B, S, C, D, F, G, H, EPush (I)Top -> I, E, G, F, C, S, AOnly I is unvisited, and we push it into the stack.
12.IC, EA, B, S, C, D, F, G, H, E, IPop ()Top -> E, G, F, C, S, ANo unvisited adjacent node. We will pop it from the stack. Here, have visited all the nodes, so we will pop all the nodes and check whether any of the nodes are left unvisited or not until the stack is empty.

We will be adding the visited node in the output sequentially:

Output = A, B, S, C, D, F, G, H, E, I

The above table shows us how the stack is used to implement Depth First Search (or Traversal) Algorithm.

6. Undo and Redo Operation

  • Undo Operation – The undo operation helps us to retrace our steps and actions than being able to go back to the previous state. The undo operation is crucial to revert our mistake instantaneously.
  • Redo Operation – The redo operation helps us to revert or restore the previously undone task using the undo operation. This feature is also referred to as a reverse undo.

The undo and redo operations are implemented using a separate stack. Let’s say the stack used to implement the undo operation is ‘undo stack’, and the stack used to implement the redo stack is ‘redo stack’.  The undo stack stores all the actions performed by us. The latest performed action will be found at the top of the stack.

When we perform undo operations, we pop the top action present in the undo stack and push it into the redo stack.

And when we perform redo operations, we pop the latest undone action (which is present at the top of the redo stack) from the redo stack and push it to the undo stack. The push and pop operations are performed on undo and redo stacks for each undo and redo operation in the same manner.

Assume that we have performed some actions and the states of Undo and Redo Stacks before performing any undo and redo operation are look like as shown in the figure below:

Application of Stack

The states of the Undo and Redo stacks after performing three undo operations:

Application of Stack

The top three actions are popped from the Undo stack and pushed into the Redo stack in order.

The states of the Undo and Redo stacks after performing two redo operations:

Application of Stack

The top two actions are popped from the Redo stack and pushed into the Undo stack in order.

The states of the Undo and Redo stacks after performing some actions:

Application of Stack

New actions are pushed into the Undo stack in order.

Remark - When we start performing actions after performing some undo operations, we can no longer perform the redo operations because the redo stack will get automatically empty, which is also shown in the above figure.

7. Forward and Backward Operations in Browser – The forward and backward operation is implemented using two separate stacks called Forward and Backward Stacks.

Backward Operation – The backward operation is used to revisit the previously visited site.

Forward Operation – The forward operation is used to revisit the latest back-warded site.

When we visit sites or pages, the addresses are stored in the backward stack.

When we perform backward operations, the top address of the Backward Stack is popped and pushed into the Forward Stack.

When we perform forward operations, the top address of the Forward Stack is popped and pushed into the Backward Stacks. The push and pop operations are performed on the Forward and Backward Stacks in the same manner for each forward and backward operation.

The states of the forward and backward stacks after visiting some sites and without performing any forward and backward operations are shown in the figure below:

Application of Stack

The states of the stacks after performing two backward operations:

Application of Stack

The top addresses of the backward stack are popped and pushed into the forward stack in order.

The states of the stacks after performing one forward operation:

Application of Stack

The top address of the forward stack is popped and pushed into the backward stack, also shown in the figure.

The states of the stacks after visiting new sites (or pages):

Application of Stack

The new addresses are pushed into the backward stack, the forward stack becomes empty, and we can no longer visit the pages whose addresses vanished from the forward stack.