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

    栈的压入、弹出序列

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

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

      

    别人的代码:

    import java.util.ArrayList;
    import java.util.Stack;
    public class Solution {
        public boolean IsPopOrder(int [] pushA,int [] popA) {
            if(pushA.length == 0) return true;
            Stack<Integer> stack = new Stack<>();
            int j = 0;
            for(int i = 0; i < pushA.length; i++){
                stack.push(pushA[i]);
                while(j < popA.length && stack.peek() == popA[j]){
                    stack.pop();
                    j++;
                }
            }
            return stack.empty() ? true : false;
        }
    }
    

      

  • 相关阅读:
    Burp
    SQL注入
    网络安全没有“银弹”
    Centos7
    虚拟机的使用流程
    虚拟机安装流程
    nmap指令
    UDP 服务器和客户端实例,实现2个客户端通过UDP服务器打洞穿透
    c++ win32下窗口的最小化到托盘以及还原
    基于百度OCR的图片文字识别
  • 原文地址:https://www.cnblogs.com/SkyeAngel/p/8562068.html
Copyright © 2011-2022 走看看