zoukankan      html  css  js  c++  java
  • 155 Min Stack 最小栈

    设计一个支持 push,pop,top 操作,并能在常量时间内检索最小元素的栈。
        push(x) -- 将元素x推入栈中。
        pop() -- 删除栈顶的元素。
        top() -- 获取栈顶元素。
        getMin() -- 检索栈中的最小元素。
    示例:
    MinStack minStack = new MinStack();
    minStack.push(-2);
    minStack.push(0);
    minStack.push(-3);
    minStack.getMin();   --> 返回 -3.
    minStack.pop();
    minStack.top();      --> 返回 0.
    minStack.getMin();   --> 返回 -2.
    详见:https://leetcode.com/problems/min-stack/description/

    Java实现:

    方法一:

    class MinStack {
        private Stack<Integer> stk;
        private Stack<Integer> minStk;
    
        /** initialize your data structure here. */
        public MinStack() {
            stk=new Stack<Integer>();
            minStk=new Stack<Integer>();
        }
        
        public void push(int x) {
            stk.push(x);
            if(minStk.isEmpty()){
                minStk.push(x);
            }else if(minStk.peek()>=x){
                minStk.push(x);
            }
        }
        
        public void pop() {
            int top=stk.pop();
            if(minStk.peek()==top){
                minStk.pop();
            }
        }
        
        public int top() {
            return stk.peek();
        }
        
        public int getMin() {
            return minStk.peek();
        }
    }
    
    /**
     * Your MinStack object will be instantiated and called as such:
     * MinStack obj = new MinStack();
     * obj.push(x);
     * obj.pop();
     * int param_3 = obj.top();
     * int param_4 = obj.getMin();
     */
    

    方法二:

    class MinStack {
        private Stack<Integer> stk;
        private Stack<Integer> minStk;
    
        /** initialize your data structure here. */
        public MinStack() {
            stk=new Stack<Integer>();
            minStk=new Stack<Integer>();
        }
        
        public void push(int x) {
            stk.push(x);
            if(minStk.isEmpty()){
                minStk.push(x);
            }else if(minStk.peek()>=x){
                minStk.push(x);
            }else{
                minStk.push(minStk.peek());
            }
        }
        
        public void pop() {
            stk.pop();
            minStk.pop();
        }
        
        public int top() {
            return stk.peek();
        }
        
        public int getMin() {
            return minStk.peek();
        }
    }
    
    /**
     * Your MinStack object will be instantiated and called as such:
     * MinStack obj = new MinStack();
     * obj.push(x);
     * obj.pop();
     * int param_3 = obj.top();
     * int param_4 = obj.getMin();
     */
    
  • 相关阅读:
    spring mvc中的@PathVariable
    JSP禁用缓存的方式 response.setHeader( "Pragma", "no-cache" ); setDateHeader("Expires", 0);
    request.getSession(true)和request.getSession(false)的区别
    Spring Mvc中DispatcherServlet和Servlet的区别小结
    web.xml中load-on-startup的作用
    Spring MVC过滤器-字符集过滤器(CharacterEncodingFilter)
    web.xml配置中的log4jRefreshInterval
    web.xml中webAppRootKey
    关于tolua的使用
    关于#pragma pack
  • 原文地址:https://www.cnblogs.com/xidian2014/p/8728211.html
Copyright © 2011-2022 走看看