【剑指offer】用两个栈实现一个队列

自己用了个笨方法

class Solution
{
public:
    void push(int node) {
        stack1.push(node);    
    }

    int pop() {
        int num;
        int siz = stack1.size();//!!!
        for(int i = 1; i < siz; ++i){
            stack2.push(stack1.top());
            stack1.pop();
        }
        num = stack1.top();
        stack1.pop();
        for(int i = 0; i < stack2.size(); ++i){
            stack1.push(stack2.top());
            stack2.pop();
        }
        return num;
    }

private:
    stack<int> stack1;
    stack<int> stack2;
};

这里必须要注意,需要用siz把stack1的大小先记录下来,不然的话每次pop都会变化!

另一种更好的,搬动数据次数更少的方法:

#include <iostream>
#include<stack>
using namespace std;


class Solution
{
public:
    void push(int node) {
        stack1.push(node);
    }

    int pop() {
        int num;
        if(stack2.empty()){
            while(!stack1.empty()){
                stack2.push(stack1.top());
                stack1.pop();}
        }
        num = stack2.top();
        stack2.pop();
        return num;
    }

private:
    stack<int> stack1;
    stack<int> stack2;
};

int main()
{
    Solution s;
    s.push(1);
    s.push(2);
    s.push(3);
    cout << s.pop();


    return 0;
}

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值