输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。假设压入栈的所有数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不可能是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的)
思路:先让pushA中的元素进栈stack,如果栈顶元素和popA[j]相等,则出栈,j++。
如果到最后,stack为空,则return true. else return false.
public boolean IsPopOrder(int [] pushA,int [] popA) {
if(pushA==null || popA==null)
return false;
Stack<Integer> stack=new Stack<Integer>();
// int i=0,j=0;
int lenA=pushA.length;
int lenB=popA.length;
if(lenA!=lenB)
return false;
int j=0;
for(int i=0;i<lenA;i++){
stack.push(pushA[i]);
while(!stack.isEmpty() && stack.peek()==popA[j]){
stack.pop();
j++;
}
}
if(stack.isEmpty())
return true;
else
return false;
}