739. 每日温度
难度中等
请根据每日 气温 列表,重新生成一个列表。对应位置的输出为:要想观测到更高的气温,至少需要等待的天数。如果气温在这之后都不会升高,请在该位置用 0 来代替。
例如,给定一个列表 temperatures = [73, 74, 75, 71, 69, 72, 76, 73],你的输出应该是 [1, 1, 4, 2, 1, 1, 0, 0]。
提示:气温 列表长度的范围是 [1, 30000]。每个气温的值的均为华氏度,都是在 [30, 100] 范围内的整数。
思路1.0:
因为是在哈希表标签里的,就一直想用哈希表来进行求解,结果无从下手,去题解一逛大家都没用哈希表。。。
思路2.0(已看题解):
(1):struct{int,int} Tempe,存储温度与对应下标
(2):stack Stk,存储温度与下标的栈
(3):从左往右的顺序从temperatures向Stk中压入
(4):将新元素与栈顶元素做比较
1)若大于,弹出栈顶,填充结果ans
2)若不大于,压入新元素
代码1.0:
struct Tempe {
int temperature;
int index;
Tempe(int a, int b) :temperature(a), index(b) {};
};
class Solution {
public:
vector<int> dailyTemperatures(vector<int>& T) {
if (T.empty()) return {};
vector<int> ans(T.size(), 0);
stack<Tempe> Stk;
for (int i = 0; i < T.size(); ++i) {
while (!Stk.empty() && T[i] > Stk.top().temperature) {
Tempe popVal = Stk.top();
Stk.pop();
ans[popVal.index] = i - popVal.index;
}
Stk.push(Tempe{ T[i] ,i });
}
return ans;
}
};
各位大仙的复杂度都那么低的吗。。