問題:java
輸入兩個整數序列,第一個序列表示棧的壓入順序,請判斷第二個序列是否爲該棧的彈出順序。假設壓入棧的全部數字均不相等。例如序列1,2,3,4,5是某棧的壓入順序,序列4,5,3,2,1是該壓棧序列對應的一個彈出序列,但4,3,5,1,2就不多是該壓棧序列的彈出序列。(注意:這兩個序列的長度是相等的)io
解決:class
① 使用額外的輔助棧,將遇到出棧的數字以前的數字壓入到輔助棧中,一直判斷出棧數字是否與輔助棧棧頂元素相等,若不相等,則不能構成正確的出棧序列。import
import java.util.ArrayList;
import java.util.Stack;List
public class Solution {
public static void main(String[] args){
int[] pushA = {1,2,3,4,5};
int[] popA = {4,5,3};
boolean res = IsPopOrder(pushA,popA);
System.out.print(res);
}
public static boolean IsPopOrder(int [] pushA,int [] popA) {
if (pushA == null || popA == null || popA.length == 0
|| pushA.length == 0 || popA.length != pushA.length){//輸入驗證
return false;
}
Stack<Integer> stack = new Stack<>();
int nextPush = 0;
int nextPop = 0;
while(nextPop < popA.length){
while(nextPush < pushA.length && (stack.isEmpty() || stack.peek() != popA[nextPop])){
stack.push(pushA[nextPush]);
nextPush ++;
}
if (stack.peek() == popA[nextPop]){
stack.pop();
nextPop ++;
}else {
return false;
}
}
return stack.isEmpty();//return true;
}
}im