题目连接:https://leetcode-cn.com/problems/implement-stack-using-queues/
题目描述
请你仅使用两个队列实现一个后入先出(LIFO)的栈,并支持普通队列的全部四种操作(push、top、pop 和 empty)。
实现 MyStack 类:
void push(int x) 将元素 x 压入栈顶。
int pop() 移除并返回栈顶元素。
int top() 返回栈顶元素。
boolean empty() 如果栈是空的,返回 true ;否则,返回 false 。
注意:
你只能使用队列的基本操作 —— 也就是 push to back、peek/pop from front、size 和 is empty 这些操作。
你所使用的语言也许不支持队列。 你可以使用 list (列表)或者 deque(双端队列)来模拟一个队列 , 只要是标准的队列操作即可。
题解一
使用单个队列实现,进栈就直接进队列,出栈则将前size-1出队并重新进队,此时出队的就正好是出栈的元素。具体操作如下:
(1)将11,22,33,44入栈:
(2)出栈,即44出栈(此时先将44前的元素出队并重新入队):
此时再将44正常出队,就完成了出栈的效果。
在此出队,则操作与上相同。
实现代码
class MyStack {
private Queue<Integer> queue=new LinkedList<>();
private int top;//存储队列尾即栈顶元素
/** Initialize your data structure here. */
public MyStack() {
}
/** Push element x onto stack. */
public void push(int x) {
queue.offer(x);
top=x;
}
/** Removes the element on top of the stack and returns that element. */
public int pop() {
int size=queue.size();
//将size-1个重新入队
for(int i=0;i<=size-2;i++){
if(i==size-2)//跟新栈顶元素
top=queue.peek();
queue.offer(queue.poll());
}
return queue.poll();//出队栈顶元素
}
/** Get the top element. */
public int top() {
return top;
}
/** Returns whether the stack is empty. */
public boolean empty() {
return queue.isEmpty();
}
}
题解二
还是使用一个队列实现,只不过是在进队列时,直接将队列中元素的出队顺序颠倒为出栈顺序,如图所示:
先进栈11:
再进栈22,并将前面的元素重新入队:
此时出队顺序已经颠倒为了出栈顺序。
再进栈33:
同样调整为了出栈顺序。
实现代码
class MyStack {
private Queue<Integer> queue=new LinkedList<>();
/** Initialize your data structure here. */
public MyStack() {
}
/** Push element x onto stack. */
public void push(int x) {
queue.offer(x);
int size=queue.size();
for(int i=0;i<size-1;i++)//将前size-1个重新进队
queue.offer(queue.poll());
}
/** Removes the element on top of the stack and returns that element. */
public int pop() {
return queue.poll();
}
/** Get the top element. */
public int top() {
return queue.peek();
}
/** Returns whether the stack is empty. */
public boolean empty() {
return queue.isEmpty();
}
}