栈的压入,弹出序列

题目

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

分析
使用栈结构,按照压入弹出数组进行一遍,若最终栈为空,返回true;否则,返回false

代码实现

import java.util.Stack;

public class Solution {
    public boolean IsPopOrder(int [] pushA,int [] popA) {
        Stack<Integer> tmp = new Stack<>();
        int indexPop = 0;
        for(int i = 0; i < pushA.length; i++){
            tmp.push(pushA[i]);
            while(!tmp.isEmpty() && popA[indexPop] == tmp.peek()){
                tmp.pop();
                indexPop++;
            }
        }
        return tmp.isEmpty();
    }
}

猜你喜欢

转载自blog.csdn.net/snailNL/article/details/81416341