两个栈实现一个队列
请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(push、pop、peek、empty):
实现 MyQueue 类:
void push(int x) 将元素 x 推到队列的末尾
int pop() 从队列的开头移除并返回元素
int peek() 返回队列开头的元素
boolean empty() 如果队列为空,返回 true ;否则,返回 false
说明:
你 只能 使用标准的栈操作 —— 也就是只有 push to top, peek/pop from top, size, 和 is empty 操作是合法的。
你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。
class MyQueue {
public:
stack<int> In;//这个栈是用来进队用的
stack<int> Out;//这个栈是用来出队用的
MyQueue() {
}
void push(int x) {
In.push(x);
}
int pop() {//出栈的时候要注意这个时候的out一方是不是空的,一旦是有空的那就将原来的in一方全部导入这个out栈中
int flag;
if (Out.empty()) {
while (!In.empty()) {
flag = In.top();
In.pop();
Out.push(flag);
}
}
flag = Out.top();
Out.pop();
return flag;
}
int peek() {//这里巧用了前面的pop函数,注意这里的pop函数是针对整个队列而言,所以这元素出来和进去的写法所谓有点不同
int res = pop();
Out.push(res);
return res;
}
bool empty() {
if (In.empty() && Out.empty()) {
return true;
}
return false;
}
};

浙公网安备 33010602011771号