正确出栈判断

正确出栈判断

设问:

假设某个程序会进行一系列入栈和出栈的混合栈操作。入栈操作会将整数 0 到 9 按顺序压入栈;

出栈操作会打印除返回值。下面哪个序列是不可能产生的?

a. 4 3 2 1 0 9 8 7 6 5

b. 4 6 8 7 5 3 2 9 0 1

1.输入出栈数组判断该出栈数组是否正确(入栈默认0~9)
public static boolean isTrue(int[] arr) {
    boolean[] marked = new boolean[arr.length];
    for (int i = 0; i < arr.length; i++) {
        if (marked[i]) {
            continue;
        }
        int cut = arr[i];
        marked[i] = true;
        for (int j = i + 1; j < arr.length; j++) {
            if (arr[i] > arr[j]) {
                if (arr[j] > cut) {
                    return false;
                } else {
                    cut = arr[j];
                }
                marked[j] = true;
            }
        }
    }
    return true;
}
2.输入入栈出栈数组判断该出栈数组是否正确
public static boolean isPossible(int[] push, int[] pop){
        if(push.length == 0){
            return false;
        }
        int index = 0;
        Stack<Integer> stack = new Stack<>();
        for(int i=0; i<push.length; i++){
            stack.push(push[i]);		
            while(!stack.empty() && index<pop.length
                    && stack.peek()==pop[index]){
                stack.pop();
                index++;
            }
        }
        return stack.empty();
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值