题目描述
把只包含因子2、3和5的数称作丑数(Ugly Number)。例如6、8都是丑数,但14不是,因为它包含因子7。 习惯上我们把1当做是第一个丑数。求按从小到大的顺序的第N个丑数。
public class Solution {
public int GetUglyNumber_Solution(int index) {
if(index==0) return 0;
int t2=0;
int t3=0;
int t5=0;
int[] result=new int[index];
result[0]=1;
int pos=1;
int min;
while(pos<index){
min=Min(result[t2]*2,result[t3]*3,result[t5]*5);
result[pos]=min;
while(result[t2]*2<=result[pos])
t2++;
while(result[t3]*3<=result[pos])
t3++;
while(result[t5]*5<=result[pos])
t5++;
pos++;
}
return result[index-1];
}
int Min(int a,int b,int c){
return c>(a>b?b:a)?(a>b?b:a):c;
}
}