练习:丑数

练习:丑数

1、题目要求

把只包含质因子2、3和5的数称作丑数(Ugly Number)。例如6、8都是丑数,但14不是,因为它包含质因子7。 习惯上我们把1当做是第一个丑数。求按从小到大的顺序的第N个丑数。

2、我的代码:

class Solution {
public:
    int GetUglyNumber_Solution(int index) {
        if(index <= 0) return 0;
        vector<int> res(index);
        int t2 = 0, t3 = 0, t5 = 0;
        res[0] = 1;
        for(int 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];
    }
};

猜你喜欢

转载自blog.csdn.net/houzijushi/article/details/81139544