根据每日 气温 列表,请重新生成一个列表,对应位置的输出是需要再等待多久温度才会升高超过该日的天数。如果之后都不会升高,请在该位置用 0 来代替。
例如,给定一个列表 temperatures = [73, 74, 75, 71, 69, 72, 76, 73],你的输出应该是 [1, 1, 4, 2, 1, 1, 0, 0]。
提示:气温 列表长度的范围是 [1, 30000]。每个气温的值的均为华氏度,都是在 [30, 100] 范围内的整数。
class Solution {
public:vector<int> dailyTemperatures(vector<int>& T) {int n = T.size();vector<int> res(n), next(101, INT_MAX);for (int i=n-1; i>=0; --i) {int warmerIndex = INT_MAX;for(int j=T[i]+1; j<=100; j++) {warmerIndex = min(warmerIndex, next[j]);}if (warmerIndex != INT_MAX) {res[i] = warmerIndex - i;}next[T[i]] = i;}return res;}
};
class Solution {
public:vector<int> dailyTemperatures(vector<int>& T) {int n = T.size();vector<int> ans(n);stack<int> s;for (int i = 0; i < n; ++i) {while (!s.empty() && T[i] > T[s.top()]) {int previousIndex = s.top();ans[previousIndex] = i - previousIndex;s.pop();}s.push(i);}return ans;}
};
class Solution {
public:vector<int> dailyTemperatures(vector<int>& T) {int n = T.size();vector<int> res(n);stack<int> s;int i = 0;while(i < n) {if (s.empty() || T[s.top()] >= T[i]) {s.push(i);i++;} else {res[s.top()] = i - s.top();s.pop();}}}return res;
}
来源:力扣(LeetCode)