【剑指 offer】包含min函数的栈

2019-04-12  本文已影响0人  邓泽军_3679

1、题目描述

设计一个支持push,pop,top等操作并且可以在O(1)时间内检索出最小元素的堆栈。

样例

MinStack minStack = new MinStack();
minStack.push(-1);
minStack.push(3);
minStack.push(-4);
minStack.getMin(); --> Returns -4.
minStack.pop();
minStack.top(); --> Returns 3.
minStack.getMin(); --> Returns -1.

2、问题描述:

3、问题关键:

4、C++代码:

class MinStack {
public:
    /** initialize your data structure here. */
    stack<int> stk1, stk2;
    MinStack() {
    }
    void push(int x) {
        stk1.push(x);
        if (stk2.empty() || x <= stk2.top())  {
            stk2.push(x);
        }
    }
    void pop() {
        int tmp = stk1.top();
        stk1.pop();
        if (tmp == stk2.top()) 
        stk2.pop();
    } 
    int top() {
        return stk1.top();
    }
    int getMin() {
        return stk2.top();
    }
};
上一篇下一篇

猜你喜欢

热点阅读