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

栈的压入、弹出序列

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

class Solution {
  public:
    bool IsPopOrder(vector<int> pushV, vector<int> popV) {
        stack<int> st;
        int i = 0;
        for (int it : pushV) {
            st.push(it);
            while (!st.empty() && st.top() == popV[i]) {
                st.pop();
                i++;
            }
        }
        if (st.empty())
            return true;
        else
            return false;;
    }
};

全部评论

相关推荐

我即大橘:耐泡王
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务