难度系数 ⭐⭐
时间限制 C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
题目内容 输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。假设压入栈的所有数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不可能是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的)
思路 设置两个指针分别指向当前在两个序列中的当前处理数据。设置一个栈结构,初始压入第一个序列的当前元素。当栈非空时,判断栈顶元素是否等于当前第二个序列的当前元素,若相等,则栈弹出,第二个序列的当前元素后移一位,继续判断是否相等;若不等,则第一个序列的指针后移一位,此时如果第一个序列中仍有数据,则将第一个序列的当前元素压栈,否则结束整个循环(循环条件为栈非空)。最后如果栈中仍有数据,则第二个序列不是第一个序列的弹出序列。
package nowcoder;
import java.util.Stack;
public class No23 {
public static boolean IsPopOrder(int[] pushA, int[] popA){
if (pushA.length == 0) return true;
Stack<Integer> stack = new Stack<>();
stack.push(pushA[0]);
int indexOfPushA = 0;
int indexOfPopA = 0;
while (!stack.isEmpty()) {
if (stack.peek() == popA[indexOfPopA]){
stack.pop();
indexOfPopA++;
continue;
}
indexOfPushA++;
if (indexOfPushA == pushA.length) break;
stack.push(pushA[indexOfPushA]);
}
return stack.isEmpty() ? true : false;
}
public static void main(String[] args){
int[] pushA = {1, 2, 3, 4, 5};
int[] popA1 = {4, 5, 3, 2, 1};
int[] popA2 = {4, 3, 5, 1, 2};
System.out.println(IsPopOrder(pushA, popA1));
System.out.println(IsPopOrder(pushA, popA2));
}
}