首页 > 其他 > 详细

最小栈

时间:2016-07-12 23:22:35      阅读:191      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!