栈是先进后出,队列是先进先出
实现:
1.实现push:将元素都push到一个栈中。
2.当是stack1不为空时,将stack1取它的top元素push到stack2中,相对与入stack1的顺序相反,在stack2中pop的时候,就达到的在stack1先进在stack2先出。如果stack2不为空,pop的时候直接取stack2的栈顶元素pop.stack2为空时,先将stack1的元素压栈(stack2).
class Solution
{
public:
void push(int node) {
stack1.push(node);
}
int pop() {
if(stack2.empty())
{
while(!stack1.empty())
{
stack2.push(stack1.top());
stack1.pop();
}
}
int temp=stack2.top();
stack2.pop();
return temp;
}
private:
stack<int> stack1;
stack<int> stack2;
};
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。