LeetCode #716 - Max Stack

题目描述:

Design a max stack that supports push, pop, top, peekMax and popMax.

1. push(x) -- Push element x onto stack.

2. pop() -- Remove the element on top of the stack and return it.

3. top() -- Get the element on the top.

4. peekMax() -- Retrieve the maximum element in the stack.

5. popMax() -- Retrieve the maximum element in the stack, and remove it. If you find more than one maximum elements, only remove the top-most one.

Example 1:

MaxStack stack = new MaxStack();

stack.push(5); 

stack.push(1);

stack.push(5);

stack.top(); -> 5

stack.popMax(); -> 5

stack.top(); -> 1

stack.peekMax(); -> 5

stack.pop(); -> 1

stack.top(); -> 5

Note:

1. -1e7 <= x <= 1e7

2. Number of operations won't exceed 10000.

3. The last four operations won't be called when stack is empty.

class MaxStack {
public:
    /** initialize your data structure here. */
    MaxStack() {}
    
    void push(int x) {
        if(s1.empty()) s1.push(x);
        else s1.push(max(s1.top(),x));
        s2.push(x);
    }
    
    int pop() {
        int x=s2.top();
        s1.pop();
        s2.pop();
        return x;
    }
    
    int top() {
        return s2.top();
    }
    
    int peekMax() {
        return s1.top();
    }
    
    int popMax() {
        int x=s1.top();
        stack<int> temp;
        while(!s2.empty()&&s1.top()!=s2.top())
        {
            temp.push(s2.top());
            s1.pop();
            s2.pop();
        }
        s1.pop();
        s2.pop();
        while(!temp.empty()) 
        {
            push(temp.top());
            temp.pop();
        }
        return x;
    }
    
private:
    stack<int> s1; //保持栈顶为最大元素
    stack<int> s2; //按照压栈顺序保持所有元素
};

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值