力扣刷题-最小栈

问题

设计一个支持 push,pop,top 操作,并能在常数时间内检索到最小元素的栈。

  • push(x) – 将元素 x 推入栈中。
  • pop() – 删除栈顶的元素。
  • top() – 获取栈顶元素。
  • getMin() – 检索栈中的最小元素。

示例

MinStack minStack = new MinStack();
minStack.push(-2);
minStack.push(0);
minStack.push(-3);
minStack.getMin(); --> 返回 -3.
minStack.pop();
minStack.top(); --> 返回 0.
minStack.getMin(); --> 返回 -2.

输入输出验证

输入:
[“MinStack”,“push”,“push”,“push”,“push”,“pop”,“getMin”,“pop”,“getMin”,“pop”,“getMin”]
[[],[512],[-1024],[-1024],[512],[],[],[],[],[],[]]
预期:
[null,null,null,null,null,null,-1024,null,-1024,null,512]

思路

这道题比较,一开始用的两个栈来解决此问题,比较简单
一个是拿来存储

public MinStack() {
    stack = new Stack<Integer>();
}

public void push(int x) {
    if(stack.isEmpty()){
        stack.push(x);
        stack.push(x);
    }else{
        int tmp = stack.peek();
        stack.push(x);
        if(tmp<x){
            stack.push(tmp);
        }else{
            stack.push(x);
        }
    }
}

public void pop() {
    stack.pop();
    stack.pop();
}

public int top() {
    return stack.get(stack.size()-2);
}

public int getMin() {
    return stack.peek();
}
上一篇:leadcode的Hot100系列--155. 最小栈


下一篇:8.4练手 腾讯50题