leecode网-946. 验证栈序列

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

示例 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 之前弹出。

提示:

1 <= pushed.length <= 1000
0 <= pushed[i] <= 1000
pushed 的所有元素 互不相同
popped.length == pushed.length
popped 是 pushed 的一个排列

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

java代码(入栈后遍历来出栈):

public boolean validateStackSequences(int[] pushed, int[] popped) {
        Stack<Integer> stackdata=new Stack();
        //验证数据是否出栈,1为出栈
        int[] visit=new int[pushed.length];

        for(int i=0;i<pushed.length;i++){

            stackdata.push(pushed[i]);
            if(popData(stackdata,popped,visit)){
                break;
            }
            if(i==pushed.length-1){
                return false;
            }
        }
        return true;
    }
    public boolean popData(Stack<Integer> stackdata,int[] popped,int[] visit){
        for(int i=0;i<popped.length;i++){
            if(visit[i]==1){
                continue;
            }
            int data=-1;
            //出栈的数据不用再比对
            if(stackdata.size()!=0){
                data=stackdata.pop();
            }
            if(data==popped[i]){
                visit[i]=1;
                continue;
            }else {
                //复原现场
                stackdata.push(data);
                return false;
            }
        }
        for(int i=0;i<visit.length;i++){
            if(visit[i]==0){
                return false;
            }
        }
        return true;
    }

2.用java中的Deque类实现:

class Solution {
    public boolean validateStackSequences(int[] pushed, int[] popped) {
        Deque<Integer> stack = new ArrayDeque<Integer>();
        int n = pushed.length;
        for (int i = 0, j = 0; i < n; i++) {
            stack.push(pushed[i]);
            while (!stack.isEmpty() && stack.peek() == popped[j]) {
                stack.pop();
                j++;
            }
        }
        return stack.isEmpty();
    }
}

作者:LeetCode-Solution
链接:https://leetcode.cn/problems/validate-stack-sequences/solution/yan-zheng-zhan-xu-lie-by-leetcode-soluti-cql0/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值