【剑指OFFER】栈的压入、弹出序列

【问题描述】

输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。假设压入栈的所有数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不可能是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的)

 

【AC代码】

 1 import java.util.ArrayList;
 2 import java.util.Stack;
 3 
 4 public class Solution {
 5     public boolean IsPopOrder(int [] pushA,int [] popA) {
 6       if (pushA.length == 0 || popA.length == 0 || pushA.length != popA.length)
 7           return false;
 8       Stack<Integer> stack = new Stack<>();
 9       int t = 0;
10       for (int i = 0; i < pushA.length; i++) {
11           stack.push(pushA[i]);
12           while (!stack.isEmpty() && stack.peek() == popA[t]) {
13               stack.pop();
14               t++;
15           }
16       }
17       return stack.isEmpty();
18     }
19 }
View Code

 

posted @ 2019-10-23 13:17  ___Moongazer  阅读(88)  评论(0编辑  收藏  举报