Logo

dev-resources.site

for different kinds of informations.

Implementing Queue using Stack

Published at
11/22/2024
Categories
datastructures
100daysofcode
programming
python
Author
ujj1225
Author
7 person written this
ujj1225
open
Implementing Queue using Stack

Queue and Stack are fairly Simple Data Structures that we use in our daily coding. As a matter of fact, they can be thought of the easiest of structures to maintain data.

Throughout the article, I'll be using DS to refer to Data Structure.

Queue is a DS that works on FIFO principle. The data that comes first is allowed to go out first. There are many ways of implementing queues. We are free to use arrays, linked list, and many others. But here, I am about to discuss the implementation of Queue using another DS called Stack.

Now, we all know, Stack is a DS that works on LIFO principle. I always think about stacking books one above the other so feel free to use that analogy if it helps you visualize.

I came across this question in hackerrank where they required us to implement Queue using 2 Stacks. Sounds simple right? Take a moment to think how would we be able to achieve this.

You might have come up with some solutions because there are plenty ways to do this. So why dont you try it directly?

Question

Now, for those who tried and got a "time-out error" and for those who did not bother trying, let me explain to you the most simplest and easiest solution to this problem.

First take a look at how stack can be implemented.

Stack Implementation

As you can see, I have implemented stack using a list. Initially the constructor initializes an empty list. We push data by appending it to the end of the list. While popping, if we don't provide an index it pops from the end of the list. Thus, the last element to be inserted is the first one to be popped out.

Now, In the similar manner for queue we have initialized two different stacks. One for enqueue and one for dequeue.

We use enqueueStack similar to stack just for pushing data at the end of list. But for dequeueStack, we know the pop function of stack removes element from the last so what we do is; we reverse the enqueueStack and put it in dequeueStack.Thus, first element of enqueueStack becomes the last element of dequeueStack, second of enqueueStack becomes second last of dequeueStack and so on. So now if we use pop function for dequeueStack then it will remove the first element that we pushed, thus, mimicking queue.

Don't worry if this sounds confusing right now! Once you see the code you'll realize what I am talking about. In fact take a look at it right now!

Queue Implementation

You might wonder what are those additional checks for. Like checking the the dequeueStack is empty or not. If we dont initially check for it. The enqueueStack's elements by reversal will sit into the dequeueStack and what happens is the dequeue Stacks element which was supposed to be on first now ends up being the last. So first dequeueStack has to be emptied like shown in the code.

Similar to this, printFront prints the item which is supposed to be at the front of queue.

After this implementation, we read input from STDIN and print output to STDOUT.

Our Input is somewhat like this:

Input

And Complete main function is:

Main

I have tried implementing this in as easy way as possible. There might be several other and better ways of implementing this. One of them is presented here!

100daysofcode Article's
30 articles in total
Favicon
100 Days of Code
Favicon
CREATING A ROCK, PAPER, & SCISSORS GAME IN PYTHON
Favicon
Week Seven Recap of #100DaysOfCode
Favicon
2/100 day golang challenge
Favicon
Valid Anagram
Favicon
Week 10 of My #100DaysOfCode Challenge: Mastering JavaScript and Building Projects! 🚀
Favicon
GHK-CU - 50 mg Copper Peptide Skin Serum - PEPAMINO
Favicon
Frontend Mentor vs. DevCoach: Which one is right for you?
Favicon
Meta-Arguments and Provider in Terraform Day 10
Favicon
Advanced HCL for Terraform Day 9
Favicon
1/100 day golang challenge
Favicon
Week 6 Recap of #100DaysOfCode
Favicon
LEARNING GO Day:3
Favicon
🚀 Mastering Generics in Java: The Ultimate Guide to Type-Safe and Reusable Code 💻
Favicon
Day 1: Getting Started with Python
Favicon
System Scalability
Favicon
Infrastructure Planning with Terraform Day 5
Favicon
Terraform State Management day 4
Favicon
Week 5 Recap of #100DaysOfCode
Favicon
Week Two of #100DaysOfCode
Favicon
FINDING REPLIT ALTERNATIVE FOR LEARNING CODE
Favicon
Implementing Queue using Stack
Favicon
Day 73. Working on the Library
Favicon
Day 71-72. Lack of knowledge
Favicon
Day 68-70. Theme switcher
Favicon
Week 4 Recap of #100DaysOfCode
Favicon
Bolt.new: Turning Your Ideas into Apps with Just a Few Words
Favicon
Days 61-65. Dark theme
Favicon
Java Functions/Methods: A Beginner's Guide to Writing Efficient Code
Favicon
Week Three of #100DaysOfCode

Featured ones: