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.
|
7
|
|
|
|
|
|
The time complexities would be worse, though. A good queue implementation does everything in constant time. |
||||||||
|
|
|
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. :-) |
|||
|
|
|
|
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. |
||
|
|
|
|
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 Queue: Dequeue: 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:
|
||||||||||
|
|
|
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:
A Queue class using only one Stack, would be as follows:
|
|||
|
|
