Let’s learn about the stack and its implementation in Python.

What is a Stack?

A stack is similar to the pile of books, chairs, etc.., in real-life. And it follows the Last-in/First-out (LIFO) principle. It is the simplest data structure. Let’s see the scenario with a real-world example. Let’s say we have a pile of books as follows.

When we want the third book from the top then, we have to remove the first two books from the top to take out the third book. Here, the topmost book goes last to the pile and comes first of the pile. The data structure stack follows the same principle Last-in/First-out (LIFO) in programming.

Operations in Stack

There are mainly two operations in a stack

1. push(data)

Adds or pushes the data into the stack.

2. pop()

Removes or pops the topmost element from the stack. See the below illustrations of push and pop operations.

We will write some helper functions that help us to get more info about the stack. Let’s see them.

peek()

Returns the topmost element from the stack.

is_empty()

Returns whether the stack is empty or not.

Enough conceptual aspects of the stack data structure. Let’s jump into the implementation without further ado. I assume you have python installed on your PC if not you can also try the online compiler.

Stack Implementation

Implementing stack is the easiest one compared to other data structure implementations. We can implement a stack in multiple ways in Python. Let’s see all of them one by one.

#1. List

We are going to implement the stack using the list in a class. Let’s see the step by step implementation of the stack. Step1: Write a class called Stack. Step2: We have to maintain the data in a list. Let’s add an empty list in the Stack class with name elements. Step3: To push the elements into the stack, we need a method. Let’s write a push method that takes data as an argument and append it to the elements list. Step4: Similarly, let’s write the pop method that pops out the topmost element from the stack. We can use the pop method of the list data type. We have completed the stack implementation with the required operations. Now, let’s add the helper functions to get more info about the stack. Step5: We can get the topmost element from the stack using the negative index. The code element[-1] returns the last of the list. It is the topmost element of the stack in our case. Step6: If the length of the elements list is 0, then the stack is empty. Let’s write a method that returns whether the element is empty or not. We have completed implementing the stack using the list data type. Oh! wait we just implemented it. But, didn’t see how to use it. How to use it then? Come let’s see how to implement it. We have to create an object for the Stack class to use it. It’s not a big deal. Let’s do it first. We have created the stack object and ready to use it. Let’s follow the below steps to test stack operations.

Check whether the stack is empty or not using the is_empty method. It should return True. Push the numbers 1, 2, 3, 4, 5 into the stack using the push method. The is_empty method should return False. Check it. Print the topmost element using the peek method. Pop the element from the stack using the pop method. Check the peek element. It should return the element 4. Now, pop all the elements from the stack. The is_empty method should return True. Check it.

Our stack implementation is completed if it passes all the above steps. Try to write the code for the above steps. Did you write the code? No, don’t worry check the code below. Hurray! we have completed the stack implementation from scratch using the list data type. You will see the output as mentioned below if you run the above code. We can directly use the list data type as a stack. The above implementation of stack helps you understand the stack implementation in other programming languages as well. You can also check out these list related articles. Let’s see the built-in deque from the collections built-in module which can act as a stack.

#2. deque from collections

It is implemented as a double-ended queue. Since it supports the addition and removal of elements from both ends. Hence we can use it as a stack. We can make it follow the LIFO principle of the stack. It is implemented using other data structures called the doubly-linked list. So the performance of the insertion and deletion of elements are consistent. Accessing elements from the middle linked list took O(n) time. We can use it as a stack as there is no need to access the middle elements from the stack. Before implementing the stack, let’s see the methods that are used to implement the stack using the queue.

append(data) – used to push the data to the stack pop() – used to remove the topmost element from the stack

There are no alternative methods for peek and is_empty. We can print the whole stack in place of peek method. Next, we can use the len method to check whether the stack is empty or not. Let’s implement the stack using deque from the collections module. That’s it. We have learned how to implement stack using the deque from the collections built-in module. You will get the output as mentioned below if you execute the above program. Till now, we have seen two ways to implement the stack. Are there any other ways to implement a stack? Yeah! Let’s see the final way to implement a stack in this tutorial.

#3. LifoQueue

The name LifoQueue itself says that it follows the LIFO principle. Hence we can use it as a stack without any doubt. It is from the built-in module queue. The LifoQueue provides some handy methods that are useful in the stack implementation. Let’s see them

put(data) – adds or pushes the data to the queue get() – removes or pops the topmost element from the queue empty() – returns whether the stack is empty or not qsize() – returns the length of the queue

Let’s implement the stack using LifoQueue from the queue module. You will get the output mentioned below if you execute the above program without changing it.

Application of Stack

Now, you have sufficient knowledge about stacks to apply it in programming problems. Let’s see a problem and solve it using a stack. Given an expression, write a program to check whether the parentheses, braces, curly-braces are balanced correctly or not. Let’s see some examples. Input: “{}” Output: Balanced Input: “{}” Output: Not Balanced We can use the stack to solve the above problem. Let’s see the steps to solve the problem.

Create a stack to store the characters. If the length of the expression is odd, then the expression is Not Balanced Iterate through the given expression. If the current character is the opening bracket from ( or { or [, then push it to stack. Else if the current character is a closing bracket ) or } or ], then pop from the stack. If the popped character is matching with the starting bracket then continue else brackets are not balanced. After the iteration, if the stack is empty then the equation is Balanced else the equation is Not Balanced.

We can make use of the set data type for brackets match checking. We can use the stack to solve many more problems. The above problem is one of them. Try to apply the stack concept wherever you think it best suits you.

Conclusion

Yah! You have completed the tutorial. I hope you enjoyed the tutorial as much as I do while making it. That’s it for the tutorial. Happy Coding 🙂 👨‍💻

Understanding Stack Implementation in Python - 98Understanding Stack Implementation in Python - 23Understanding Stack Implementation in Python - 5Understanding Stack Implementation in Python - 27Understanding Stack Implementation in Python - 4Understanding Stack Implementation in Python - 53Understanding Stack Implementation in Python - 86Understanding Stack Implementation in Python - 90Understanding Stack Implementation in Python - 65