正确出栈判断
设问:
假设某个程序会进行一系列入栈和出栈的混合栈操作。入栈操作会将整数 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();
}