丑数

题目描述

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

题目链接:https://www.nowcoder.com/practice/6aa9e04fc3794f68acf8778237ba065b?tpId=13&&tqId=11186&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking

代码:

class Solution {
public:
    int GetUglyNumber_Solution(int index) {
        vectorres(index+1);
        res[0]=1;
        int t2=0,t3=0,t5=0;
        for(int i=1;i

 

你可能感兴趣的:(剑指offer)