丑数只能从丑数进行*2、*3、 *5 得到,那么我们仅需维护三个数组存储每个数✖️2,3,5的值即可,然后每次取最小的那个值进行数组中等待返回。
方法1:
public int GetUglyNumber_Solution(int index) {
if (index<7){
return index;
}
int[] res=new int[index];
res[0]=1;
List<Integer> l2=new LinkedList<>();
List<Integer> l3=new LinkedList<>();
List<Integer> l5=new LinkedList<>();
int currIndex=1;
while (currIndex<index){
//上一个数的值
int last=res[currIndex-1];
l2.add(last*2);
l3.add(last*3);
l5.add(last*5);
int tempMinValue=Math.min(l2.get(0),Math.min(l3.get(0),l5.get(0)));
if (l2.get(0)==tempMinValue){
res[currIndex]=l2.remove(0);
}
if (l3.get(0)==tempMinValue){
res[currIndex]=l3.remove(0);
}
if (l5.get(0)==tempMinValue){
res[currIndex]=l5.remove(0);
}
currIndex++;
}
return res[index-1];
}
上面那种方法毕竟占了三个链表空间,我们这里可以简化下,我们只保存和比较3个数:用于乘2的最小的数、用于乘3的最小的数,用于乘5的最小的数
public int GetUglyNumber_Solution(int index) {
if(index<7) return index;
ArrayList<Integer> list=new ArrayList<Integer>();
list.add(1);
int i2=0,i3=0,i5=0;
while (list.size()<index){
int min = Math.min(Math.min(list.get(i2)*2, list.get(i3)*3), list.get(i5)*5);
list.add(min);
if (min==list.get(i2)*2){
i2++;
}
if (min==list.get(i3)*3){
i3++;
}
if (min==list.get(i5)*5){
i5++;
}
}
return list.get(list.size()-1);
}
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有