当前位置:网站首页>LeetCode 739. 每日温度
LeetCode 739. 每日温度
2022-07-06 06:02:00 【Sasakihaise_】
【单调栈】
class Solution {
// 单调栈 10:18 42
public int[] dailyTemperatures(int[] temperatures) {
Deque<Integer> stack = new LinkedList();
int[] t = temperatures;
int n = t.length;
int[] ans = new int[n];
for (var i = n - 1; i >= 0; i--) {
while (!stack.isEmpty() && t[stack.peek()] <= t[i]) {
stack.pop();
}
if (stack.isEmpty()) {
ans[i] = 0;
} else {
ans[i] = stack.peek() - i;
}
stack.push(i);
}
return ans;
}
}
边栏推荐
猜你喜欢
How Huawei routers configure static routes
Hongliao Technology: how to quickly improve Tiktok store
isam2运行流程
Sqlmap tutorial (III) practical skills II
Application of Lie group in gtsam
[Baiwen smart home] first day of the course_ Learn Embedded and understand the development mode of bare metal and RTOS
【Postman】Collections配置运行过程
Function of activation function
P2802 go home
Investment strategy discussion and market scale prediction report of China's solid state high power amplifier industry from 2022 to 2028
随机推荐
[happy Spring Festival] if you feel happy, dance
OSPF configuration command of Huawei equipment
IPv6 comprehensive experiment
Expose the serial fraudster Liu Qing in the currency circle, and default hundreds of millions of Cheng Laolai
properties文件
LTE CSFB process
[Baiwen smart home] first day of the course_ Learn Embedded and understand the development mode of bare metal and RTOS
【微信小程序】搭建开发工具环境
CoDeSys note 2: set coil and reset coil
Interface test: what are the components of the URL in fiddler
Cannot build artifact 'test Web: War expanded' because it is included into a circular depend solution
Market development prospect and investment risk assessment report of China's humidity sensor industry from 2022 to 2028
Web service connector: Servlet
异常检测方法总结
Usage of test macro of GTEST
Winter 2021 pat class B problem solution (C language)
Caused by:org.gradle.api.internal.plugins . PluginApplicationException: Failed to apply plugin
Report on market depth analysis and future trend prediction of China's arsenic trioxide industry from 2022 to 2028
High quality coding tool clion
A complete collection of necessary learning websites for office programmers