题目描述
输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。假设压入栈的所有数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不可能是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的)
解题思路一
public boolean IsPopOrder(int[] pushA, int[] popA) {
if (pushA == null && popA == null) {
return true; //都为空
}
int push = 0; //压入序列的下标
int pop = 0;//弹出序列的下标
int tmp;
Stack<Integer> stack = new Stack<Integer>();//辅助
while (push < pushA.length){
if(stack.empty()){
stack.push(pushA[push]);
push++;
continue;
}
if(popA[pop] == stack.peek()){
stack.pop();
pop ++;
}else{
stack.push(pushA[push]);
push ++;
}
}
if(stack.empty())
return true;
else{
while (!stack.empty()){
if(stack.peek() != popA[pop])
return false;
else{
stack.pop();
pop ++;
}
}
return true;
}
}
解题思路二
public boolean IsPopOrder2(int[] pushA, int[] popA) {
if (pushA == null || popA == null) {
return true; //为空
}
if(popA.length != pushA.length)
return false;
int j = 0;//数组popA的下标
Stack<Integer> stack = new Stack<Integer>();
for (int i = 0; i < pushA.length; i++) {
stack.push(pushA[i]);
while (!stack.empty() && stack.peek() == popA[j]){
//栈顶元素是弹出序列的对应元素
stack.pop();
j ++;
}
}
return stack.empty();
}