题目描述
用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
栈具有后进先出的特点,队列则是先进先出。
class Solution
{
public:
void push(int node) {
stack2.push(node);
}
int pop() {
if(stack1.empty())
{
while(stack2.size())
{
stack1.push(stack2.top());
stack2.pop();
}
}
int tmp=stack1.top();
stack1.pop();
return tmp;
}
private:
stack<int> stack1;
stack<int> stack2;
};