教育改变生活

标题: 栈的压入,弹出序列 [打印本页]

作者: 一秉    时间: 2020-12-9 15:49
标题: 栈的压入,弹出序列
题目描述
输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。假设压入栈的所有数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不可能是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的)
示例1
输入:[1,2,3,4,5],[4,3,5,1,2]
返回值:false
实现代码:
class Solution:
    def IsPopOrder(self, pushV, popV):
        # write code here
        if not pushV or not popV:
            return False
         
        stack = []
        index = 0
        for i in pushV:
            stack.append(i)
            while stack and stack[-1] == popV[index]:
                stack.pop()
                index += 1
                 
        if not stack:
            return True
        return False  






欢迎光临 教育改变生活 (http://bbs.goldoar.com/) Powered by Discuz! X3.2