zoukankan      html  css  js  c++  java
  • 栈的压入、弹出序列

    题目描述

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

    具体代码:

    public boolean IsPopOrder(int[] pushA, int[] popA) {
    		if (pushA.length != popA.length) {
    			return false;
    		}
    		Stack<Integer> stack = new Stack<Integer>();
    		int j = 0;
    		for (int i = 0; i < pushA.length; i++) {
    			stack.push(pushA[i]);
    			while ((!stack.empty()) && (stack.peek() == popA[j])) {
    				stack.pop();
    				j++;
    			}
    		}
    		if (stack.empty()) {
    			return true;
    		} else {
    			return false;
    		}
    	}

  • 相关阅读:
    settTimeout vs setInterval
    JS继承
    JS创建对象
    原型链
    开始学习python的感受
    Problem 29
    Python 查看关键字
    Problem 21
    Problem 34
    Problem 42
  • 原文地址:https://www.cnblogs.com/jasonhaven/p/7355047.html
Copyright © 2011-2022 走看看