Leetcode-946

946. 验证栈序列

给定 pushed 和 popped 两个序列,只有当它们可能是在最初空栈上进行的推入 push 和弹出 pop 操作序列的结果时,返回 true;否则,返回 false 。

1
2
3
4
5
6
7
8
9
10
11
示例 1:
输入:pushed = [1,2,3,4,5], popped = [4,5,3,2,1]
输出:true
解释:我们可以按以下顺序执行:
push(1), push(2), push(3), push(4), pop() -> 4,
push(5), pop() -> 5, pop() -> 3, pop() -> 2, pop() -> 1
示例 2:

输入:pushed = [1,2,3,4,5], popped = [4,3,5,1,2]
输出:false
解释:1 不能在 2 之前弹出。

提示:
0 <= pushed.length == popped.length <= 1000
0 <= pushed[i], popped[i] < 1000
pushed 是 popped 的排列。

方法:模拟过程

直接模拟入栈和出栈的过程。

流程

遍历pushed元素

  • 当前元素入栈
    • while true(栈不空,且栈顶元素与popped[i]相同),则栈顶元素出栈,出栈元素数量+=1
  • 如果栈为空,则为True;否则为False
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    class Solution:
    def validateStackSequences(self, pushed, popped):
    """
    :type pushed: List[int]
    :type popped: List[int]
    :rtype: bool
    """
    if len(pushed)!=len(popped):
    return False

    stack,i=[],0

    for n in pushed:
    stack.append(n)
    while stack and stack[-1]==popped[i]:
    stack.pop()
    i+=1

    return not stack