剑指offer-21-栈的压入、弹出序列

栈的压入、弹出序列

http://www.nowcoder.com/questionTerminal/d77d11405cc7470d82554cb392585106

# -*- coding:utf-8 -*-
class Solution:
    def IsPopOrder(self, pushV, popV):
        # write code here
        queue=[]
        i,j=0,0
        while i<len(pushV):
            if pushV[i]!=popV[j]:
                queue.append(pushV[i])
                i+=1
            else :
                i+=1
                j+=1
                while queue and popV[j]==queue[-1]:
                    j+=1
                    queue.pop(-1)
        if queue==[]:
            return True
        else:
            return False
全部评论

相关推荐

一颗宏心:华为HR晚上过了十二点后还给我法消息。
点赞 评论 收藏
分享
努力成为C语言高手:质疑大祥老师,理解大祥老师,成为大祥老师
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务