首页 > 其他 > 详细

739. Daily Temperatures

时间:2018-05-06 16:01:58      阅读:193      评论:0      收藏:0      [点我收藏+]

https://leetcode.com/problems/daily-temperatures/description/

class Solution {
public:
    vector<int> dailyTemperatures(vector<int>& temperatures) {
        stack<int> st;
        vector<int> res(temperatures.size());
        for (int i = temperatures.size() -1; i >= 0; i--) {
            while (!st.empty() && temperatures[i] >= temperatures[st.top()])
                st.pop();
            if (st.empty())
                res[i] = 0;
            else
                res[i] = st.top() - i;
            st.push(i);
        }
        return res;
    }
};

 

739. Daily Temperatures

原文:https://www.cnblogs.com/JTechRoad/p/8998068.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!