穷举:找出第n个丑数

丑数_牛客网

https://www.nowcoder.com/practice/6aa9e04fc3794f68acf8778237ba065b?tpId=13&tqId=11186&tPage=2&rp=2&ru=%2Fta%2Fcoding-interviews&qru=%2Fta%2Fcoding-interviews%2Fquestion-ranking

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

思路:一个丑数成以2/3/5,得到的还是一个丑数;有3个对列pos2/pos3/pos5,每次都取最小的数,放到数组中【小于7的数都是丑数】。

代码:

public class ArrayLimit {

 public static void main(String[] args) {

      ArrayLimit al=new ArrayLimit();

      System.out.println(al.GetUglyNumber_Solution(8));

 }

 public int GetUglyNumber_Solution(int index) {

      if (index < 7) {

          return index;

      }

      int[] res = new int[index];

      res[0] = 1;

      int pos2 = 0;// 2的对列

      int pos3 = 0;// 3的对列

      int pos5 = 0;// 5的对列

      // 一个丑数*2/3/5还是丑数

      for (int i = 1; i < index; i++) {

          res[i] = Math.min(Math.min(res[pos2] * 2, res[pos3] * 3), res[pos5] * 5);

          if (res[i]==res[pos2] * 2) {

               pos2++;

          }

          if (res[i]==res[pos3] * 3) {

               pos3++;

          }

          if (res[i]==res[pos5] * 5) {

               pos5++;

          }

      }

      return res[index-1];

 }

}

全部评论
挺好的解题思路,学到了
点赞 回复 分享
发布于 2020-08-19 14:10
有个疑惑,请问这样不会造成只记录了2,3,5的n次方吗?
点赞 回复 分享
发布于 2021-03-25 15:39
看不懂
1 回复 分享
发布于 2021-04-26 20:31

相关推荐

我见java多妩媚:大外包
点赞 评论 收藏
分享
评论
15
1
分享
牛客网
牛客企业服务