- 用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型
- 设置两个栈s1,s2
- 进栈只进s1
- 出栈只从s2出,如果s2不为空,则按序出栈即可;如果发现s2为空,则把s1的所有数据按出栈顺序进入到s2即可
- C++ 代码
class Solution
{
public:
void push(int node) {
stack1.push(node);
}
int pop() {
int tmp;
if(stack2.empty())
{
while(!stack1.empty())
{
stack2.push(stack1.top());
stack1.pop();
}
}
tmp=stack2.top();
stack2.pop();
return tmp;
}
private:
stack<int> stack1;
stack<int> stack2;
};
网友评论