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

最小栈

时间:2016-07-12 23:25:28      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

思想分析:

技术分享

实现方案:

技术分享
class MinStack
{
public:
    MinStack()
    {}

    void push(int x)
    {
        if (StackNum.empty())
        {
            StackNum.push(x);
            StackMin.push(x);
        }
        else
        {
            if (x <= StackMin.top())
                StackMin.push(x);
            StackNum.push(x);
        }
    }

    void pop()
    {
        if (StackMin.top() == StackNum.top())
            StackMin.pop();
        StackNum.pop();
    }

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

    int getMin()
    {
        return StackMin.top();
    }
protected:
    stack<int> StackNum;
    stack<int> StackMin;
};
两个栈实现最小栈

 

最小栈

标签:

原文地址:http://www.cnblogs.com/shihaochangeworld/p/5665086.html

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