Ugly Number II

Write a program to find the n-th ugly number.

Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 1, 2, 3, 4, 5, 6, 8, 9, 10, 12 is the sequence of the first 10 ugly numbers.

Note that 1 is typically treated as an ugly number.


class Solution {
public:
int min(int a, int b, int c){
        int minNum = a > b ? b : a;
        return minNum > c ? c : minNum;
    }
    int nthUglyNumber(int n) {
      int *ugly = new int[n];
        memset(ugly, 0, sizeof(int) * n);
        ugly[0] = 1;

        int factor2 = 2, factor3 = 3, factor5 = 5;
        int index2, index3, index5;
        index2 = index3 = index5 = 0;

        for(int i=1; i<n; i++){
            int minNum = min(factor2, factor3, factor5);
            ugly[i] = minNum;

            if(factor2 == minNum)
                 factor2 = 2 * ugly[++index2];
            if(factor3 == minNum)
                 factor3 = 3 * ugly[++index3];
            if(factor5 == minNum)
                 factor5 = 5 * ugly[++index5];
        }

        return ugly[n-1];  
    }
};


你可能感兴趣的:(Ugly Number II)