30. 包含 min 函数的栈

2024-08-21 10:20
文章标签 函数 30 min

本文主要是介绍30. 包含 min 函数的栈,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


comments: true
difficulty: 简单
edit_url: https://github.com/doocs/leetcode/edit/main/lcof/%E9%9D%A2%E8%AF%95%E9%A2%9830.%20%E5%8C%85%E5%90%ABmin%E5%87%BD%E6%95%B0%E7%9A%84%E6%A0%88/README.md

面试题 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/problems/min-stack/

解法

方法一:双栈

我们用两个栈来实现,其中stk1 用来存储数据,stk2 用来存储当前栈中的最小值。初始时,stk2 中存储一个极大值。

  • 当我们向栈中压入一个元素 x 时,我们将 x 压入 stk1,并将 min(x, stk2[-1]) 压入 stk2
  • 当我们从栈中弹出一个元素时,我们将 stk1stk2 的栈顶元素都弹出。
  • 当我们要获取当前栈中的栈顶元素时,我们只需要返回 stk1 的栈顶元素即可。
  • 当我们要获取当前栈中的最小值时,我们只需要返回 stk2 的栈顶元素即可。

时间复杂度:对于每个操作,时间复杂度均为 O ( 1 ) O(1) O(1),空间复杂度 O ( n ) O(n) O(n)

Python3
class MinStack:def __init__(self):self.stk1 = []self.stk2 = [inf]def push(self, x: int) -> None:#难点:stk2每个位置的元素,对应 stk1对应位置元素 至 栈地元素的 最小值self.stk1.append(x)self.stk2.append(min(x, self.stk2[-1]))def pop(self) -> None:self.stk1.pop() # 1 2 3 0 0 5(顶)self.stk2.pop() # 1 1 1 0 0 0(顶)def top(self) -> int:return self.stk1[-1]def getMin(self) -> int:return self.stk2[-1]# Your MinStack object will be instantiated and called as such:
# obj = MinStack()
# obj.push(x)
# obj.pop()
# param_3 = obj.top()
# param_4 = obj.getMin()
Java
class MinStack {private Deque<Integer> stk1 = new ArrayDeque<>();private Deque<Integer> stk2 = new ArrayDeque<>();/** initialize your data structure here. */public MinStack() {stk2.push(Integer.MAX_VALUE);}public void push(int x) {stk1.push(x);stk2.push(Math.min(x, stk2.peek()));}public void pop() {stk1.pop();stk2.pop();}public int top() {return stk1.peek();}public int getMin() {return stk2.peek();}
}/*** Your MinStack object will be instantiated and called as such:* MinStack obj = new MinStack();* obj.push(x);* obj.pop();* int param_3 = obj.top();* int param_4 = obj.getMin();*/
C++
class MinStack {
public:/** initialize your data structure here. */MinStack() {stk2.push(INT_MAX);}void push(int x) {stk1.push(x);stk2.push(min(x, stk2.top()));}void pop() {stk1.pop();stk2.pop();}int top() {return stk1.top();}int getMin() {return stk2.top();}private:stack<int> stk1;stack<int> stk2;
};/*** Your MinStack object will be instantiated and called as such:* MinStack* obj = new MinStack();* obj->push(x);* obj->pop();* int param_3 = obj->top();* int param_4 = obj->getMin();*/
Go
type MinStack struct {stk1 []intstk2 []int
}/** initialize your data structure here. */
func Constructor() MinStack {return MinStack{[]int{}, []int{math.MaxInt32}}
}func (this *MinStack) Push(x int) {this.stk1 = append(this.stk1, x)this.stk2 = append(this.stk2, min(x, this.stk2[len(this.stk2)-1]))
}func (this *MinStack) Pop() {this.stk1 = this.stk1[:len(this.stk1)-1]this.stk2 = this.stk2[:len(this.stk2)-1]
}func (this *MinStack) Top() int {return this.stk1[len(this.stk1)-1]
}func (this *MinStack) GetMin() int {return this.stk2[len(this.stk2)-1]
}/*** Your MinStack object will be instantiated and called as such:* obj := Constructor();* obj.Push(x);* obj.Pop();* param_3 := obj.Top();* param_4 := obj.GetMin();*/
TypeScript
class MinStack {stack: number[];mins: number[];constructor() {this.stack = [];this.mins = [];}push(x: number): void {this.stack.push(x);this.mins.push(Math.min(this.getMin(), x));}pop(): void {this.stack.pop();this.mins.pop();}top(): number {return this.stack[this.stack.length - 1];}getMin(): number {return this.mins.length == 0 ? Infinity : this.mins[this.mins.length - 1];}
}/*** Your MinStack object will be instantiated and called as such:* var obj = new MinStack()* obj.push(x)* obj.pop()* var param_3 = obj.top()* var param_4 = obj.getMin()*/
Rust
use std::collections::VecDeque;
struct MinStack {stack: VecDeque<i32>,min_stack: VecDeque<i32>,
}/*** `&self` means the method takes an immutable reference.* If you need a mutable reference, change it to `&mut self` instead.*/
impl MinStack {/** initialize your data structure here. */fn new() -> Self {Self {stack: VecDeque::new(),min_stack: VecDeque::new(),}}fn push(&mut self, x: i32) {self.stack.push_back(x);if self.min_stack.is_empty() || *self.min_stack.back().unwrap() >= x {self.min_stack.push_back(x);}}fn pop(&mut self) {let val = self.stack.pop_back().unwrap();if *self.min_stack.back().unwrap() == val {self.min_stack.pop_back();}}fn top(&self) -> i32 {*self.stack.back().unwrap()}fn get_min(&self) -> i32 {*self.min_stack.back().unwrap()}
}
JavaScript
/*** initialize your data structure here.*/
var MinStack = function () {this.stack = [];this.minStack = [];
};/*** @param {number} x* @return {void}*/
MinStack.prototype.push = function (x) {this.stack.unshift(x);if (!this.minStack.length || this.minStack[0] >= x) {this.minStack.unshift(x);}
};/*** @return {void}*/
MinStack.prototype.pop = function () {if (this.stack.shift() === this.minStack[0]) {this.minStack.shift();}
};/*** @return {number}*/
MinStack.prototype.top = function () {return this.stack[0];
};/*** @return {number}*/
MinStack.prototype.min = function () {return this.minStack[0];
};/*** Your MinStack object will be instantiated and called as such:* var obj = new MinStack()* obj.push(x)* obj.pop()* var param_3 = obj.top()* var param_4 = obj.min()*/
C#
public class MinStack {private Stack<int> stk1 = new Stack<int>();private Stack<int> stk2 = new Stack<int>();/** initialize your data structure here. */public MinStack() {stk2.Push(int.MaxValue);}public void Push(int x) {stk1.Push(x);stk2.Push(Math.Min(x, GetMin()));}public void Pop() {stk1.Pop();stk2.Pop();}public int Top() {return stk1.Peek();}public int GetMin() {return stk2.Peek();}
}/*** Your MinStack object will be instantiated and called as such:* MinStack obj = new MinStack();* obj.Push(x);* obj.Pop();* int param_3 = obj.Top();* int param_4 = obj.GetMin();*/
Swift
class MinStack {private var stack: [Int]private var minStack: [Int]init() {stack = []minStack = [Int.max]}func push(_ x: Int) {stack.append(x)minStack.append(min(x, minStack.last!))}func pop() {stack.removeLast()minStack.removeLast()}func top() -> Int {return stack.last!}func getMin() -> Int {return minStack.last!}
}/*** Your MinStack object will be instantiated and called as such:* let obj = MinStack();* obj.push(x);* obj.pop();* let param_3 = obj.top();* let param_4 = obj.getMin();*/

这篇关于30. 包含 min 函数的栈的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1092890

相关文章

MySQL 中的 CAST 函数详解及常见用法

《MySQL中的CAST函数详解及常见用法》CAST函数是MySQL中用于数据类型转换的重要函数,它允许你将一个值从一种数据类型转换为另一种数据类型,本文给大家介绍MySQL中的CAST... 目录mysql 中的 CAST 函数详解一、基本语法二、支持的数据类型三、常见用法示例1. 字符串转数字2. 数字

Python内置函数之classmethod函数使用详解

《Python内置函数之classmethod函数使用详解》:本文主要介绍Python内置函数之classmethod函数使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录1. 类方法定义与基本语法2. 类方法 vs 实例方法 vs 静态方法3. 核心特性与用法(1编程客

Python函数作用域示例详解

《Python函数作用域示例详解》本文介绍了Python中的LEGB作用域规则,详细解析了变量查找的四个层级,通过具体代码示例,展示了各层级的变量访问规则和特性,对python函数作用域相关知识感兴趣... 目录一、LEGB 规则二、作用域实例2.1 局部作用域(Local)2.2 闭包作用域(Enclos

MySQL count()聚合函数详解

《MySQLcount()聚合函数详解》MySQL中的COUNT()函数,它是SQL中最常用的聚合函数之一,用于计算表中符合特定条件的行数,本文给大家介绍MySQLcount()聚合函数,感兴趣的朋... 目录核心功能语法形式重要特性与行为如何选择使用哪种形式?总结深入剖析一下 mysql 中的 COUNT

MySQL 中 ROW_NUMBER() 函数最佳实践

《MySQL中ROW_NUMBER()函数最佳实践》MySQL中ROW_NUMBER()函数,作为窗口函数为每行分配唯一连续序号,区别于RANK()和DENSE_RANK(),特别适合分页、去重... 目录mysql 中 ROW_NUMBER() 函数详解一、基础语法二、核心特点三、典型应用场景1. 数据分

MySQL数据库的内嵌函数和联合查询实例代码

《MySQL数据库的内嵌函数和联合查询实例代码》联合查询是一种将多个查询结果组合在一起的方法,通常使用UNION、UNIONALL、INTERSECT和EXCEPT关键字,下面:本文主要介绍MyS... 目录一.数据库的内嵌函数1.1聚合函数COUNT([DISTINCT] expr)SUM([DISTIN

Python get()函数用法案例详解

《Pythonget()函数用法案例详解》在Python中,get()是字典(dict)类型的内置方法,用于安全地获取字典中指定键对应的值,它的核心作用是避免因访问不存在的键而引发KeyError错... 目录简介基本语法一、用法二、案例:安全访问未知键三、案例:配置参数默认值简介python是一种高级编

python 常见数学公式函数使用详解(最新推荐)

《python常见数学公式函数使用详解(最新推荐)》文章介绍了Python的数学计算工具,涵盖内置函数、math/cmath标准库及numpy/scipy/sympy第三方库,支持从基础算术到复杂数... 目录python 数学公式与函数大全1. 基本数学运算1.1 算术运算1.2 分数与小数2. 数学函数

Python中help()和dir()函数的使用

《Python中help()和dir()函数的使用》我们经常需要查看某个对象(如模块、类、函数等)的属性和方法,Python提供了两个内置函数help()和dir(),它们可以帮助我们快速了解代... 目录1. 引言2. help() 函数2.1 作用2.2 使用方法2.3 示例(1) 查看内置函数的帮助(

C++ 函数 strftime 和时间格式示例详解

《C++函数strftime和时间格式示例详解》strftime是C/C++标准库中用于格式化日期和时间的函数,定义在ctime头文件中,它将tm结构体中的时间信息转换为指定格式的字符串,是处理... 目录C++ 函数 strftipythonme 详解一、函数原型二、功能描述三、格式字符串说明四、返回值五