当前位置:   article > 正文

力扣HOT100 - 739. 每日温度

力扣HOT100 - 739. 每日温度

解题思路:

单调栈

  1. class Solution {
  2. public int[] dailyTemperatures(int[] temperatures) {
  3. int length = temperatures.length;
  4. int[] ans = new int[length];
  5. Deque<Integer> stack = new LinkedList<>();
  6. for (int i = 0; i < length; i++) {
  7. int temperature = temperatures[i];
  8. while (!stack.isEmpty() && temperature > temperatures[stack.peek()]) {
  9. int preIndex = stack.pop();
  10. ans[preIndex] = i - preIndex;
  11. }
  12. stack.push(i);
  13. }
  14. return ans;
  15. }
  16. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/560143
推荐阅读
相关标签
  

闽ICP备14008679号