剑指Offer49. 丑数(三指针)

Posted whisperbb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指Offer49. 丑数(三指针)相关的知识,希望对你有一定的参考价值。

我们把只包含因子 2、3 和 5 的数称作丑数(Ugly Number)。求按从小到大的顺序的第 n 个丑数。

示例:

输入: n = 10
输出: 12
解释: 1, 2, 3, 4, 5, 6, 8, 9, 10, 12 是前 10 个丑数。

说明:

1?是丑数。
n?不超过1690。

代码:

class Solution {
    public int nthUglyNumber(int n) {
        int p2 = 0, p3 = 0, p5 = 0;
        int[] res = new int[n];
        res[0] = 1;
        for(int i = 1; i < n; i++){
            res[i] = Math.min(res[p2] * 2, Math.min(res[p3] * 3, res[p5] * 5));
            if(res[i] == res[p2] * 2) p2++;
            if(res[i] == res[p3] * 3) p3++;
            if(res[i] == res[p5] * 5) p5++;
        }
        return res[n - 1];
    }
}

以上是关于剑指Offer49. 丑数(三指针)的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer49丑数

剑指offer面试题 49. 丑数

剑指 Offer 49. 丑数

LeetCode(剑指 Offer)- 49. 丑数

LeetCode(剑指 Offer)- 49. 丑数

[LeetCode]剑指 Offer 49. 丑数