题目链接:用两个栈实现队列
用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
注意:不必每次都交换两个栈中的元素
class Solution
{
public:
void push(int node) {
if(stack1.empty()){
if(stack2.empty()){
stack1.push(node);
}else{
while(!stack2.empty()){
int tmp = stack2.top();
stack2.pop();
stack1.push(tmp);
}
stack1.push(node);
}
}else{
stack1.push(node);
}
}
int pop() {
if(!stack1.empty()){
if(!stack2.empty()){
int tmp = stack2.top();
stack2.pop();
return tmp;
}else{
while(!stack1.empty()){
int tmp = stack1.top();
stack1.pop();
stack2.push(tmp);
}
int tmp = stack2.top();
stack2.pop();
return tmp;
}
}else{
int tmp = stack2.top();
stack2.pop();
return tmp;
}
}
private:
stack<int> stack1;
stack<int> stack2;
};