题解 | #丑数#

丑数

https://www.nowcoder.com/practice/6aa9e04fc3794f68acf8778237ba065b

using System;
using System.Collections.Generic;


class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param index int整型
     * @return int整型
     */
    public int GetUglyNumber_Solution(int index) {
        // write code here
        if (index == 0)
            return 0;
        List<int> listN = new List<int>() {
            1
        };
        int nIndex2 = 0, nIndex3 = 0, nIndex5 = 0;
        while (listN.Count < index) {
            int nNew2 = listN[nIndex2] * 2;
            int nNew3 = listN[nIndex3] * 3;
            int nNew5 = listN[nIndex5] * 5;
            int nNewMin = Math.Min(nNew2, Math.Min(nNew3, nNew5));
            listN.Add(nNewMin);
            if (nNewMin == nNew2) nIndex2++;
            if (nNewMin == nNew3) nIndex3++;
            if (nNewMin == nNew5) nIndex5++;
        }
        return listN[index - 1];
    }
}

全部评论

相关推荐

10-28 11:04
已编辑
美团_后端实习生(实习员工)
一个2人:我说几个点吧,你的实习经历写的让人觉得毫无含金量,你没有挖掘你需求里的 亮点, 让人觉得你不仅打杂还摆烂。然后你的简历太长了🤣你这个实习经历看完,估计没几个人愿意接着看下去, sdk, 索引这种东西单拎出来说太顶真了兄弟,好好优化下简历吧
点赞 评论 收藏
分享
头像
11-18 16:08
福州大学 Java
影流之主:干10年不被裁,我就能拿别人一年的钱了,日子有盼头了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务