vote up 7 vote down star
7

Suppose we have two stacks and no other temporary variable . Is to possible to use it as a queue provided we have associated API i.e push,pop for stack and insert and remove for queue operations.

flag

25% accept rate

5 Answers

vote up 24 vote down

Careful! If you use an answer (like the one by Brian Bondy currently voted up) where you move items back from the second stack to the first, the solution does not have amortized constant time, and can be made faster. For example, if the queue contains 100 elements, and then repeatedly a new item is pushed then popped, the given answer will move all 100 elements back and forth between the stacks every time.

You can do much better modifying it to the solution as follows:

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 true 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|flag
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
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
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
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
Good point, but I wasn't trying to optimize as much as I was trying to write a solution that can be easily understood while answering the question " Is to possible". – Brian R. Bondy Sep 16 '08 at 15:48
vote up 4 vote down

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|flag
vote up 1 vote down

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|flag
vote up -1 vote down

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

link|flag
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
vote up -3 vote down

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|flag

Your Answer

Get an OpenID
or

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