title: '算法:栈的压入、弹出序列' cover: https://img.paulzzh.com/touhou/random?30 categories: 算法题目 date: 1996-07-27 08:00:00 tags: [算法题目, 栈]
<br/>
<!--more-->输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。假设压入栈的所有数字均不相等。
例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不可能是该压栈序列的弹出序列。
(注意:这两个序列的长度是相等的)
通过一个Stack模拟上述操作即可
import java.util.Stack;
public class Solution {
public boolean IsPopOrder(int [] pushA,int [] popA) {
if (pushA == null && popA == null) return true;
if (pushA == null || popA == null || pushA.length != popA.length) return false;
Stack<Integer> stack = new Stack<>();
int popIndex = 0;
for (int n : pushA) {
stack.push(n);
// 如果当前stack不为空, 且应当出栈则出栈
while (!stack.isEmpty() && stack.peek() == popA[popIndex]) {
stack.pop();
popIndex++;
}
}
return stack.isEmpty();
}
}