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

得到栈中的最小值

时间:2021-01-13 11:27:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:space   minstack   std   class   using   color   else   pac   empty   

#include <iostream>
#include <stack>
using namespace std;

class GetMinStack{
public:
    void push(int x);

    void pop();

    int top();

    int getmin();
private:
    stack<int> S;
    stack<int> temp;
};

void GetMinStack::push(int x)
{
    if(S.empty())
    {
        temp.push(x);
        S.push(x);
    }
    else
    {
        if(x < temp.top())
        {
            temp.push(x);
            S.push(x);
        }
        else
        {
            temp.push(temp.top());
            S.push(x);
        }
    }
}
void GetMinStack::pop()
{
    S.pop();
    temp.pop();
}
int GetMinStack::top()
{
    return S.top();
}
int GetMinStack::getmin()
{
    return temp.top();
}

int main()
{
    GetMinStack TestStack;
    TestStack.push(-2);
    cout << TestStack.top() << endl;
    cout << TestStack.getmin() << endl;
    TestStack.push(0);
    cout << TestStack.getmin() << endl;
    TestStack.push(-6);
    cout << TestStack.getmin() << endl;
    TestStack.pop();
    cout << TestStack.getmin() << endl;
    return 0;
}

 

得到栈中的最小值

标签:space   minstack   std   class   using   color   else   pac   empty   

原文地址:https://www.cnblogs.com/11ys/p/14266531.html

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