Description
Given a list of daily temperatures T, return a list such that, for each day in the input, tells you how many days you would have to wait until a warmer temperature. If there is no future day for which this is possible, put 0 instead.
For example, given the list of temperatures T = [73, 74, 75, 71, 69, 72, 76, 73], your output should be [1, 1, 4, 2, 1, 1, 0, 0].
Note: The length of temperatures will be in the range [1, 30000]. Each temperature will be an integer in the range [30, 100].
分析
题目的意思是:给你每天的天气温度,返回每天需要等待的温暖天气到来的天数。
- 这里用了栈的方法,巧妙的解决了差值的问题,栈里面存放的是递减的温度值的索引。这个题目跟那个柱形图装水很像。
代码
参考文献
[LeetCode] Daily Temperatures 日常温度