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

LeetCode Min Stack

时间:2014-12-08 23:10:51      阅读:400      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   ar   color   os   sp   

Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.

  • push(x) -- Push element x onto stack.
  • pop() -- Removes the element on top of the stack.
  • top() -- Get the top element.
  • getMin() -- Retrieve the minimum element in the stack.

Show Tags
Have you met this question in a real interview? 
Yes
 
No

Discuss

题意:写一个新的栈:支持入栈,出栈,得到栈顶,和得到此时栈最小的那个数

思路:前三个操作都可以用一个栈来实现,求最小的话就需要一个新的单调栈来维护了,这个新的单调栈需要注意的地方是:当原始的栈pop掉一个数的时候可能会影响到这个单调栈,只要判断此时pop掉的话,是不是单调栈的栈顶就能解决了,因为这个单调栈是原始栈的子集


class MinStack {
public:
    void push(int x) {
        st.push(x);
        if (stm.empty() || stm.top() >= x) stm.push(x);
    }

    void pop() {
        int top = st.top();
        st.pop();
        if (top == stm.top()) stm.pop();
    }

    int top() {
        return st.top();
    }

    int getMin() {
        return stm.top();
    }
    
private:
        stack<int> st;
        stack<int> stm;
};


LeetCode Min Stack

标签:des   style   blog   http   io   ar   color   os   sp   

原文地址:http://blog.csdn.net/u011345136/article/details/41809349

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