Suppose we have two stacks and no other temporary variable.

Is to possible to "construct" a queue data structure using only the two stacks?

link|improve this question

25% accept rate
you sholed reayy increase ur accept rate – user963499 2 days ago
feedback

6 Answers

Keep 2 stacks, let's call them inbox and outbox.

Queue:
- Push the new element onto inbox

Dequeue:
- If outbox is empty, refill it by popping each element from inbox and pushing it onto outbox
- Pop and return the top element from outbox

Using this method, each element will be in each stack exactly once - meaning each element will be pushed twice and popped twice, giving amortized constant time operations.

Here's an implementation in Java:

public class Queue<E>
{

    private Stack<E> inbox = new Stack<E>();
    private Stack<E> outbox = new Stack<E>();

    public void queue(E item) {
        inbox.push(item);
    }

    public E dequeue() {
        if (outbox.isEmpty()) {
            while (!inbox.isEmpty()) {
               outbox.push(inbox.pop());
            }
        }
        return outbox.pop();
    }

}
link|improve this answer
1  
Excellent point! I missed that little detail when I first read Brian's solution. There really isn't any reason to copy the outbox back to the inbox anyway, so that could be why I completely missed that "implementation" detail. :-) – Daniel Spiewak Sep 16 '08 at 4:46
1  
Yeah, I almost skipped over that too! If I had edit privileges, I would have just fixed his answer, but this makes it clear. – Dave L. Sep 16 '08 at 4:50
1  
The worst-case time complexity is still O(n). I persist in saying this because I hope no students out there (this sounds like a homework/educational question) think this is an acceptable way to implement a queue. – Tyler Sep 16 '08 at 12:56
1  
It is true that the worst-case time for a single pop operation is O(n) (where n is the current size of the queue). However, the worst-case time for a sequence of n queue operations is also O(n), giving us the amortized constant time. I wouldn't implement a queue this way, but it's not that bad. – Dave L. Sep 16 '08 at 14:06
1  
@Tyler If your stack is array based, as most are, you will always get O(n) worst case for a single operation. – Thomas Ahle Dec 6 '11 at 10:24
show 9 more comments
feedback

You can even simulate a queue using only one stack. The second (temporary) stack can be simulated by the call stack of recursive calls to the insert method.

The principle stays the same when inserting a new element into the queue:

  • You need to transfer elements from one stack to another temporary stack, to reverse their order.
  • Then push the new element to be inserted, onto the temporary stack
  • Then transfer the elements back to the original stack
  • The new element will be on the bottom of the stack, and the oldest element is on top (first to be popped)

A Queue class using only one Stack, would be as follows:

public class SimulatedQueue<E> {
    private java.util.Stack<E> stack = new java.util.Stack<E>();

    public void insert(E elem) {
        if (!stack.empty()) {
            E topElem = stack.pop();
            insert(elem);
            stack.push(topElem);
        }
        else
            stack.push(elem);
    }

    public E remove() {
        return stack.pop();
    }
}
link|improve this answer
2  
Pretty elegant and nice use of recursion! – satyajit Jan 17 '11 at 3:43
2  
Maybe the code looks elegant but it is very inefficient (O(n**2) insert) and it still has two stacks, one in the heap and one in the call stack, as @pythonquick points out. For a non-recursive algorithm, you can always grab one "extra" stack from the call stack in languages supporting recursion. – antti.huima Apr 5 '11 at 17:59
feedback

Brian's answer is the classically correct one. In fact, this is one of the best ways to implement persistent functional queues with amortized constant time. This is so because in functional programming we have a very nice persistent stack (linked list). By using two lists in the way Brian describes, it is possible to implement a fast queue without requiring an obscene amount of copying.

As a minor aside, it is possible to prove that you can do anything with two stacks. This is because a two-stack operation completely fulfills the definition of a universal Turing machine. However, as Forth demonstrates, it isn't always easy. :-)

link|improve this answer
2  
en.wikipedia.org/wiki/… – user295190 Aug 23 '11 at 5:46
feedback

The time complexities would be worse, though. A good queue implementation does everything in constant time.

Edit

Not sure why my answer has been downvoted here. If we program, we care about time complexity, and using two standard stacks to make a queue is inefficient. It's a very valid and relevant point. If someone else feels the need to downvote this more, I would be interested to know why.

A little more detail: on why using two stacks is worse than just a queue: if you use two stacks, and someone calls dequeue while the outbox is empty, you need linear time to get to the bottom of the inbox (as you can see in Dave's code).

You can implement a queue as a singly-linked list (each element points to the next-inserted element), keeping an extra pointer to the last-inserted element for pushes (or making it a cyclic list). Implementing queue and dequeue on this data structure is very easy to do in constant time. That's worst-case constant time, not amortized. And, as the comments seem to ask for this clarification, worst-case constant time is strictly better than amortized constant time.

link|improve this answer
Not in the average case. Brian's answer describes a queue which would have amortized constant enqueue and dequeue operations. – Daniel Spiewak Sep 16 '08 at 3:53
That's true. You have average case & amortized time complexity the same. But the default is usually worst-case per-operation, and this is O(n) where n is the current size of the structure. – Tyler Sep 16 '08 at 4:51
Worst case can also be amortized. For example, mutable dynamic arrays (vectors) are usually considered to have constant insertion time, even though an expensive resize-and-copy operation is required every so often. – Daniel Spiewak Sep 16 '08 at 8:33
"Worst-case" and "amortized" are two different types of time complexity. It doesn't make sense to say that "worst-case can be amortized" -- if you could make the worst-case = the amortized, then this would be a significant improvement; you would just talk about worst-case, with no averaging. – Tyler Sep 16 '08 at 12:51
+1 for useful contribution to the subject. – thetoolman May 6 at 20:16
feedback
public class QueueUsingStacks<T>
    {
        private LinkedListStack<T> stack1;
        private LinkedListStack<T> stack2;

        public QueueUsingStacks()
        {
            stack1=new LinkedListStack<T>();
            stack2 = new LinkedListStack<T>();

        }
        public void Copy(LinkedListStack<T> source,LinkedListStack<T> dest )
        {
            while(source.Head!=null)
            {
                dest.Push(source.Head.Data);
                source.Head = source.Head.Next;
            }
        }
        public void Enqueue(T entry)
        {

           stack1.Push(entry);
        }
        public T Dequeue()
        {
            T obj;
            if (stack2 != null)
            {
                Copy(stack1, stack2);
                 obj = stack2.Pop();
                Copy(stack2, stack1);
            }
            else
            {
                throw new Exception("Stack is empty");
            }
            return obj;
        }

        public void Display()
        {
            stack1.Display();
        }


    }

For every enqueue operation, we add to the top of the stack1. For every dequeue, we empty the content's of stack1 into stack2, and remove the element at top of the stack.Time complexity is O(n) for dequeue, as we have to copy the stack1 to stack2. time complexity of enqueue is the same as a regular stack

link|improve this answer
feedback

You'll have to pop everything off the stack to get the bottom element and then put them all back on for every "dequeue" operation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.