[剑指Offer]栈的压入、弹出序列

题目

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

题解

理解题意~

代码

import java.util.Stack;

public class Main {
	public static void main(String[] args) {
		int[] pushA= {1,2,3,4,5};
		int[] popA= {4,5,3,2,1};
		System.out.print(IsPopOrder(pushA,popA));
	}
	
    public static boolean IsPopOrder(int [] pushA,int [] popA) {
    	if(pushA==null||pushA.length==0) {
    		return false;
    	}
    	
        Stack<Integer> stack=new Stack<>();
        int pushIdx=0;
        int popIdx=0;
        
        while(pushIdx<pushA.length) {
        	stack.push(pushA[pushIdx++]);
        	
        	while(!stack.empty()&&stack.peek()==popA[popIdx]) {
        		stack.pop();
        		++popIdx;
        	}
        }
        
        return stack.empty();
    }
}
原文地址:https://www.cnblogs.com/coding-gaga/p/11154830.html