Toasobi
每日温度(单调栈)
本文最后更新于2023年10月03日,已超过457天没有更新。如果文章内容或图片资源失效,请留言反馈,我会及时处理,谢谢!
- 题目:
给定一个整数数组 temperatures ,表示每天的温度,返回一个数组 answer ,其中 answer[i] 是指对于第 i 天,下一个更高温度出现在几天后。如果气温在这之后都不会升高,请在该位置用 0 来代替。
示例 1:
输入: temperatures = [73,74,75,71,69,72,76,73]
输出: [1,1,4,2,1,1,0,0]
示例 2:
输入: temperatures = [30,40,50,60]
输出: [1,1,1,0]
示例 3:
输入: temperatures = [30,60,90]
输出: [1,1,0]
- 图解思路:
代码如下:
class Solution {
public int[] dailyTemperatures(int[] temperatures) {
int n = temperatures.length;
int[] res = new int[n];
Stack<Integer> st = new Stack<>();
for (int i = 0; i < n; i++) {
while (!st.isEmpty() && temperatures[i] > temperatures[st.peek()]) {
int t = st.pop();
res[t] = i - t;
}
st.push(i);
}
return res;
}
}
《天气预报员》剧情片高清在线免费观看:https://www.jgz518.com/xingkong/49868.html
《在这个家庭里》剧情片高清在线免费观看:https://www.jgz518.com/xingkong/113548.html
《在这个家庭里》剧情片高清在线免费观看:https://www.jgz518.com/xingkong/113548.html
你的文章让我感受到了生活的美好,谢谢! http://www.55baobei.com/Hx6YjL0zko.html