码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer---丑数

时间:2017-08-03 01:07:34      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:blog   log   span   offer   丑数   color   代码   min   学习   

class Solution {
public://别人的代码就是精简,惭愧啊,继续学习。
    int GetUglyNumber_Solution(int index) {
        if (index < 7)return index;
        vector<int> res(index);
        res[0] = 1;
        int t2 = 0, t3 = 0, t5 = 0, i;
        for (i = 1; i < index; ++i)
        {
            res[i] = min(res[t2] * 2, min(res[t3] * 3, res[t5] * 5));
            if (res[i] == res[t2] * 2)t2++;
            if (res[i] == res[t3] * 3)t3++;
            if (res[i] == res[t5] * 5)t5++;
        }
        return res[index - 1];
    }
};

 

剑指offer---丑数

标签:blog   log   span   offer   丑数   color   代码   min   学习   

原文地址:http://www.cnblogs.com/159269lzm/p/7277427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!