1、题目描述
输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。假设压入栈的所有数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不可能是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的)
2、代码实现
package com.baozi.offer; import java.util.Stack; /** * 输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。 * 假设压入栈的所有数字均不相等。 * 例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列, * 但4,3,5,1,2就不可能是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的) * * @author BaoZi * @create 2019-07-12-15:54 */ public class Offer18 { public static void main(String[] args) { int[] array1 = new int[]{1, 2, 3, 4, 5}; int[] array2 = new int[]{4, 5, 3, 2, 1}; Offer18 offer18 = new Offer18(); boolean result = offer18.IsPopOrder(array1, array2); System.out.println(result); } public boolean IsPopOrder(int[] pushA, int[] popA) { //先进行特殊情况的判断,当两个数组都为空的时候返回false if (pushA.length == 0 || popA.length == 0) return false; Stack<Integer> stack = new Stack<>(); int popIndex = 0; for (int i = 0; i < pushA.length; i++) { stack.push(pushA[i]); while (!stack.isEmpty() && stack.peek() == popA[popIndex]) { stack.pop(); popIndex++; } } return stack.empty(); } }