码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer:面试题22、栈的压入、弹出序列

时间:2020-06-20 01:28:17      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:假设   代码示例   test   ++   static   integer   string   int   oid   

题目描述

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

代码示例

import java.util.Stack;

public class Offer22 {
    public static void main(String[] args) {
        int[] pushSeq = {1, 2, 3, 4, 5};
        int[] popSeq = {4, 5, 3, 2 , 1};
        Offer22 testObj = new Offer22();
        System.out.println(testObj.isPopOrder(pushSeq, popSeq));
    }

    public boolean isPopOrder(int[] pushSeq, int[] popSeq) {
        int size = pushSeq.length;
        Stack<Integer> stack = new Stack<>();
        for (int pushIndex = 0, popIndex = 0; pushIndex < size; pushIndex++) {
            stack.push(pushSeq[pushIndex]);
            while (popIndex < size && !stack.isEmpty()
                    && stack.peek() == popSeq[popIndex]) {
                stack.pop();
                popIndex++;
            }
        }
        return stack.isEmpty();
    }
}

剑指offer:面试题22、栈的压入、弹出序列

标签:假设   代码示例   test   ++   static   integer   string   int   oid   

原文地址:https://www.cnblogs.com/ITxiaolei/p/13167017.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!