题目
输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。假设压入栈的所有数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不可能是该压栈序列的弹出序列。
原题OJ链接
https://www.nowcoder.com/practice/d77d11405cc7470d82554cb392585106?tpId=13&&tqId=11174&rp=1&ru=/activity/oj&qru=/ta/coding-interviews/question-ranking
解答(带测试)
//出栈入栈次序匹配
public class Test {
public static void main(String[] args) {
int[] pushA = {1,2,3,4};
int[] popA = {3,4,2,1};
System.out.println(isPopOrder(pushA,popA));
}
public static boolean isPopOrder(int [] pushA,int [] popA) {
Stack<Integer> stack = new Stack<>();
int j = 0;
for (int i = 0; i < pushA.length; i++) {
stack.push(pushA[i]);
while(j<popA.length && !stack.isEmpty() && stack.peek() == popA[j]){
stack.pop();
j++;
}
}return stack.isEmpty();
}
}