• [LeetCode] 946. Validate Stack Sequences


    Given two sequences pushed and popped with distinct values, return true if and only if this could have been the result of a sequence of push and pop operations on an initially empty stack.

    Example 1:

    Input: pushed = [1,2,3,4,5], popped = [4,5,3,2,1]
    Output: true
    Explanation: We might do the following sequence:
    push(1), push(2), push(3), push(4), pop() -> 4,
    push(5), pop() -> 5, pop() -> 3, pop() -> 2, pop() -> 1
    

    Example 2:

    Input: pushed = [1,2,3,4,5], popped = [4,3,5,1,2]
    Output: false
    Explanation: 1 cannot be popped before 2.

    Constraints:

    • 0 <= pushed.length == popped.length <= 1000
    • 0 <= pushed[i], popped[i] < 1000
    • pushed is a permutation of popped.
    • pushed and popped have distinct values.

    验证栈序列。

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

    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/validate-stack-sequences
    著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

    思路是模拟元素入栈出栈的过程,如果过程中有元素对不上则返回false。我们创建一个stack,根据 pushed 数组的顺序把元素放到 stack 中。每次我们把一个元素放到 stack 之后,我们需要检查一下,如果当前栈顶元素 == popped[i] 说明当前栈顶这个元素是要被pop出来的。如果当前栈顶元素 != popped[i] 则说明对不上了。按照这个模拟的顺序,stack应该是为空的,所以如果模拟结束之后stack不为空,则返回false。

    时间O(n)

    空间O(n)

    Java实现

     1 class Solution {
     2     public boolean validateStackSequences(int[] pushed, int[] popped) {
     3         int i = 0;
     4         Stack<Integer> stack = new Stack<>();
     5         for (int num : pushed) {
     6             stack.push(num);
     7             while (!stack.isEmpty() && popped[i] == stack.peek()) {
     8                 stack.pop();
     9                 i++;
    10             }
    11         }
    12         return stack.isEmpty();
    13     }
    14 }

    LeetCode 题目总结

  • 相关阅读:
    jquery 实现 点击按钮后倒计时效果,多用于实现发送手机验证码、邮箱验证码
    javascript 中的后退和前进到上下一页
    文件IO流完成文件的复制(复杂版本主要用来演示各种流的用途,不是最佳复制方案哦)
    int ,Intege,String 三者之间的转换
    servlet生成验证码代码
    jsp servlet 的 请求转发和重定向
    struts2
    SQL连接:内连接、外连接、交叉连接。
    今天参加了聚思力面试
    进程(Process)和线程(Thread)的关系和区别
  • 原文地址:https://www.cnblogs.com/cnoodle/p/14458094.html
Copyright © 2020-2023  润新知