Leetcode: 739. 每日温度
要点:
把数组下标压进栈,即将进栈的下标元素对应的温度如果比栈顶元素对应的温度高,则该元素为右边第一个比栈顶元素对应温度高的温度下标,该元素与栈顶元素下标之差即为需要等待的天数,其他元素采用相同做法,最终结果放在数组res中。
注意事项:
注意是把下标压入栈,用下标所对应的温度相比较。
class Solution {
public int[] dailyTemperatures(int[] T) {
Stack<Integer> st = new Stack<Integer>();
int len = T.length;
int[] res = new int[len];
Arrays.fill(res,0);
for(int i = 0;i < len;i++){
while(!st.isEmpty() && T[st.peek()] < T[i]){
int index = st.peek();
int day = i - st.pop();
res[index] = day;
}
st.push(i);
}
return res;
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。