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

栈的压入、弹出序列

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

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param pushV int整型vector 
     * @param popV int整型vector 
     * @return bool布尔型
     */
    bool IsPopOrder(const vector<int>& pushV, const vector<int>& popV) {
        stack<int> st;
        auto push = pushV.begin();
        auto pop = popV.begin();
        while(push != pushV.end())
        {
            st.push(*push);
            while(pop != popV.end() && !st.empty() && st.top() == *pop)
            {
                st.pop();
                ++pop;
            }
            ++push;
        }
        return pop == popV.end();
    }
};

全部评论

相关推荐

投递华为等公司10个岗位
点赞 评论 收藏
分享
ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务