题解 | #包含min函数的栈#

包含min函数的栈

http://www.nowcoder.com/practice/4c776177d2c04c2494f2555c9fcc1e49

class Solution {
public:
    //本题需要三个栈,第一个栈是真正的栈,第二个和第三个栈是辅助栈,用来在常数时间里求出最小值min
    stack<int> s1,s2,s3;
    void push(int value) {
        s1.push(value);
        while(!s2.empty()&&value>s2.top()){
            int temp=s2.top();
            s2.pop();
            s3.push(temp);
        }
        s2.push(value);
        while(!s3.empty()){
            int temp=s3.top();
            s3.pop();
            s2.push(temp);
        }
    }
    void pop() {
        int temp=s1.top();
        s1.pop();
        while(s2.top()!=temp){
            int data=s2.top();
            s2.pop();
            s3.push(data);
        }
        s2.pop();
        while(!s3.empty()){
            int data=s3.top();
            s3.pop();
            s2.push(data);
        }
    }
    int top() {
        return s1.top();
    }
    int min() {
        return s2.top();
    }
};
全部评论

相关推荐

10-25 12:05
已编辑
湖南科技大学 Java
若梦难了:我有你这简历,已经大厂乱杀了
点赞 评论 收藏
分享
10-05 23:02
东北大学 Java
我说句实话啊:那时候看三个月培训班视频,随便做个项目背点八股,都能说3 40w是侮辱价
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务