剑指 Offer 30 包含min函数的栈

2022-07-28
1分钟阅读时长

剑指 Offer 30 包含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.

 

提示:

  1. 各函数的调用总次数不超过 20000 次

 

注意:本题与主站 155 题相同:https://leetcode-cn.com/problems/min-stack/

type MinStack struct {

}


/** initialize your data structure here. */
func Constructor() MinStack {

}


func (this *MinStack) Push(x int)  {

}


func (this *MinStack) Pop()  {

}


func (this *MinStack) Top() int {

}


func (this *MinStack) Min() int {

}


/**
 * Your MinStack object will be instantiated and called as such:
 * obj := Constructor();
 * obj.Push(x);
 * obj.Pop();
 * param_3 := obj.Top();
 * param_4 := obj.Min();
 */

LeetCode题库地址