码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer---栈的压入,弹出顺序

时间:2017-08-06 19:34:33      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:als   span   int   code   return   --   顺序   order   else   

class Solution 
{
public:
    bool IsPopOrder(vector<int> pushV, vector<int> popV)
    {

        stack<int> stack1;
        
        int i = 0;
        int j = 0;

        stack1.push(pushV[0]);
        while ((!stack1.empty()) && (j<popV.size()))
        {
        
            if ((stack1.top() != popV[j]) && (i<pushV.size()))
            {
                ++i;
                stack1.push(pushV[i]);
            }
            else if (stack1.top() == popV[j])
            {
                stack1.pop();
                ++j;
            }
            else
            {
                ++j;
            }
        }
        
        if (stack1.empty()) return true;
        else return false;
    }
};

 

剑指offer---栈的压入,弹出顺序

标签:als   span   int   code   return   --   顺序   order   else   

原文地址:http://www.cnblogs.com/159269lzm/p/7295511.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!