提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
面试题 03.04. 化栈为队
题目描述
实现一个MyQueue类,该类用两个栈来实现一个队列。
示例:
MyQueue queue = new MyQueue();
queue.push(1);
queue.push(2);
queue.peek(); // 返回 1
queue.pop(); // 返回 1
queue.empty(); // 返回 false
说明:
你只能使用标准的栈操作 – 也就是只有 push to top, peek/pop from top, size 和 is empty 操作是合法的。
你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。
假设所有操作都是有效的 (例如,一个空的队列不会调用 pop 或者 peek 操作)。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/implement-queue-using-stacks-lcci
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
解题过程
解题思路
1、入队直接将元素压入栈1;
2、出队则先将栈1的元素全部压入栈2,随后记录出栈栈2的栈顶元素,最后将栈2的全部元素压回栈1,并返回所记录的栈顶元素;
3、查看队头元素,则和出队过程类似,区别在于只记录栈2栈顶元素而不出栈栈2栈顶元素。
class MyQueue {
Stack<Integer> stack1 = null;
Stack<Integer> stack2 = null;
/** Initialize your data structure here. */
public MyQueue() {
stack1 = new Stack<>();
stack2 = new Stack<>();
}
/** Push element x to the back of queue. */
public void push(int x) {
//入队
stack1.push(x);
}
/** Removes the element from in front of queue and returns that element. */
public int pop() {
int res = 0;
while(!stack1.isEmpty()){
stack2.push(stack1.pop());
}
res = stack2.pop();
while(!stack2.isEmpty()){
stack1.push(stack2.pop());
}
return res;
}
/** Get the front element. */
public int peek() {
int res = 0;
while(!stack1.isEmpty()){
stack2.push(stack1.pop());
}
res = stack2.peek();
while(!stack2.isEmpty()){
stack1.push(stack2.pop());
}
return res;
}
/** Returns whether the queue is empty. */
public boolean empty() {
return stack1.isEmpty();
}
}
/**
* Your MyQueue object will be instantiated and called as such:
* MyQueue obj = new MyQueue();
* obj.push(x);
* int param_2 = obj.pop();
* int param_3 = obj.peek();
* boolean param_4 = obj.empty();
*/