Leetcode详详解

155. Min Stack

2019-01-08  本文已影响0人  Chrisbupt
class MinStack {
public:
    /** initialize your data structure here. */
    stack<int> stackValue;
    stack<int> stackMin;
    MinStack() {
        
    }
    
    void push(int x) {
        stackValue.push(x);  //正常压入栈
        if (stackMin.empty()|| stackMin.top()>=x){
            stackMin.push(x); //如果单调栈为空,或者当前要压入的元素比单调栈中的元素还小,则将该元素也压入单调栈。
        }
    }
    
    void pop() {
        if (stackMin.top()==stackValue.top() ){//当单调栈中的元素和栈中要pop的元素相等时,也把单调栈中的该元素也pop
            stackMin.pop();
        }
        stackValue.pop();

    }

    
    int top() {
        return stackValue.top();
    }
    
    int getMin() {
        return stackMin.top();//单调栈中的栈顶元素一直是最小值
    }
};

/**
 * 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();
 */
上一篇下一篇

猜你喜欢

热点阅读