lintcode算法题之147-水仙花数

廉价感情. 提交于 2020-02-29 03:48:01

47. 水仙花数

水仙花数的定义是,这个数等于他每一位数上的幂次之和 见维基百科的定义

比如一个3位的十进制整数153就是一个水仙花数。因为 153 = 13 + 53 + 33。

而一个4位的十进制数1634也是一个水仙花数,因为 1634 = 14 + 64 + 34 + 44。

给出n,找到所有的n位十进制水仙花数。

样例

样例 1:

输入: 1
输出: [0,1,2,3,4,5,6,7,8,9]

样例 2:

输入:  2
输出: []	
样例解释: 没有2位数的水仙花数。

 

代码区:

public class Solution {
    /**

     * username:softstarhhy
     * @param n: The number of digits
     * @return: All narcissistic numbers with n digits
     */
    public List<Integer> getNarcissisticNumbers(int n) {
        
        // write your code here
        List list=new ArrayList<Integer>();
       int start = (int)Math.pow(10, n-1);
        int end = (int)Math.pow(10, n);
       /* for(int s=0;s<n;s++)
        {
            n=(int)Math.pow(10,s+1);
            if(s==(n-1))
            {
                n=n-1;
            }
        }*/
        if(start == 1)
            start = 0;

        for(int j=start;j<=end;j++)
        {
        
        String sxhstr=String.valueOf(j);
        char[] charsxh=sxhstr.toCharArray();
        int[] numbers=new int[charsxh.length];
        for(int k=0;k<numbers.length;k++)
        {
            numbers[k]=charsxh[k]-'0';
            
        }
        int len=numbers.length;
        int current=0;
        int sum=0;
        for(int i=0;i<len;i++)
        {
            current=(int)Math.pow(numbers[i],len);
            sum=sum+current;
            
            if((j==sum)&&(i==(len-1)))
            {
                list.add(j);
               
            }
            
        
        }
        
       }
       return list;
    }
}

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!