题目描述
输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。假设压入栈的所有数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不可能是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的)
1 # -*- coding:utf-8 -*- 2 class Solution: 3 def IsPopOrder(self, pushV, popV): 4 # write code here 5 if pushV==None or len(pushV)!=len(popV): 6 return False 7 index = 0 8 stack=[] 9 for e in pushV: 10 stack.append(e) 11 while stack and stack[-1] == popV[index]: 12 stack.pop() 13 index+=1 14 if len(stack)==0: 15 return True 16 else: 17 return False
2019-12-11 09:38:39