题解 | #栈的压入、弹出序列#

栈的压入、弹出序列

https://www.nowcoder.com/practice/d77d11405cc7470d82554cb392585106

#include<iostream>
#include<algorithm>
#include<vector>
#include<stack>

using namespace std;

//class Solution {
//public:
    bool IsPopOrder(vector<int> pushV, vector<int> popV) {
        stack<int> s;
        int j = 0;
        for (int i = 0; i < pushV.size(); i++) {
            s.push(pushV[i]);
            while (s.size() > 0 && s.top() == popV[j]) {
                j++;
                s.pop();
            }
        }
        return s.empty();
    }
//};

全部评论

相关推荐

狠赚笔第一人:学计算机自己不努力怪大环境?我大一就拿到了美团大厂的offer,好好看看自己有没有努力查看图片
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务