Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 977 Bytes

76. 栈的压入、弹出序列.md

File metadata and controls

20 lines (18 loc) · 977 Bytes

输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否为该栈的弹出顺序。假设压入栈的所有数字均不相等。例如,序列 {1,2,3,4,5} 是某栈的压栈序列,序列 {4,5,3,2,1} 是该压栈序列对应的一个弹出序列,但 {4,3,5,1,2} 就不可能是该压栈序列的弹出序列。

初始化: 辅助栈 stack,弹出序列的索引 i;
遍历压栈序列: 各元素记为 num;
元素 num 入栈;
循环出栈:若 stack 的栈顶元素 == 弹出序列元素 popped[i],则执行出栈与 i++;
返回值: 若 stack 为空,则此弹出序列合法。

class Solution:
    def validateStackSequences(self, pushed: List[int], popped: List[int]) -> bool:
        stack = []
        i = 0 
        for num in pushed:
            stack.append(num)
            while stack and stack[-1] == popped[i]:
                stack.pop()
                i += 1
        return not stack