• 栈的压入、弹出序列
    • 题目
    • 解题思路

    栈的压入、弹出序列

    题目

    牛客网

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

    解题思路

    1. 通过 Stack 进行模拟 push,当 pop 的节点等于 Stack 的 top 节点时,pop Stack
    2. 最后如果 Stack 剩余数据,则判定为 false
    1. public boolean IsPopOrder(int[] pushA, int[] popA) {
    2. if (pushA.length != popA.length) {
    3. return false;
    4. }
    5. if (pushA.length == 0) {
    6. return false;
    7. }
    8. LinkedList<Integer> stack = new LinkedList<>();
    9. int j = 0;
    10. for (int value : pushA) {
    11. stack.addLast(value);
    12. while (stack.peekLast() != null && popA[j] == stack.getLast()) {
    13. j++;
    14. stack.removeLast();
    15. }
    16. }
    17. return stack.isEmpty();
    18. }