其他分享
首页 > 其他分享> > offer30 包含min函数的栈

offer30 包含min函数的栈

作者:互联网

定义栈的数据结构,请在该类型中实现一个能够得到栈的最小元素的 min 函数在该栈中,调用 min、push 及 pop 的时间复杂度都是 O(1)。
示例:

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/bao-han-minhan-shu-de-zhan-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

解题思路:这里用一个栈date记录进出的内容,用一个栈Min记录date栈内最小的元素,让这个元素始终在栈顶部
python

class MinStack:

    def __init__(self):
        """
        initialize your data structure here.
        """
        self.date = []
        self.Min = []


    def push(self, x: int) -> None:
        self.date.append(x)
        if not self.Min or self.Min[-1] >= x:
            self.Min.append(x)

    def pop(self) -> None:
        if self.date.pop() == self.Min[-1]:      # 这里有个细节,在这里判断时,不管该判断是否成立,data的栈顶元素已经被弹出了,下面java也是同样
            self.Min.pop()

    def top(self) -> int:
        return self.date[-1]

    def min(self) -> int:
        return self.Min[-1]

Java 代码中,由于 Stack 中存储的是 int 的包装类 Integer ,因此需要使用 equals() 代替 == 来比较值是否相等。

class MinStack {
    Stack<Integer> A, B;
    public MinStack() {
        A = new Stack<>();
        B = new Stack<>();
    }
    public void push(int x) {
        A.add(x);
        if(B.empty() || B.peek() >= x)
            B.add(x);
    }
    public void pop() {
        if(A.pop().equals(B.peek()))
            B.pop();
    }
    public int top() {
        return A.peek();
    }
    public int min() {
        return B.peek();
    }
}

标签:minStack,函数,min,offer30,self,Min,pop,int
来源: https://www.cnblogs.com/Harrypoter/p/16385146.html