码迷,mamicode.com
首页 > 其他好文 > 详细

丑数问题

时间:2016-06-12 23:06:57      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

只包含因子2,3,5的树称之为丑数  ,查找指定位置的丑数

package offer;

public class choushu {
    public static boolean isugly(int num){
        if(num<=0){
            return false;
        }
        while(num%2==0){
            num/=2;
        }
        while(num%3==0){
            num/=3;
        }
        while(num%5==0){
            num/=5;
        }
        if(num==1)
            return true;
        else 
            return false;    
    }
    public static int findugly(int index){
        int num=0;
        int num_ug=0;
        while(num_ug<index){
            ++num;
            if(isugly(num)){
                num_ug++;
                
            }
        }
        return num;
    }

    public static void main(String[] args) {
        // TODO Auto-generated method stub
System.out.println(findugly(7));
    }

}

 

丑数问题

标签:

原文地址:http://www.cnblogs.com/lucyliu/p/5578878.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!