202. Happy Number

Write an algorithm to determine if a number is "happy".

A happy number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the squares of its digits, and repeat the process until the number equals 1 (where it will stay), or it loops endlessly in a cycle which does not include 1. Those numbers for which this process ends in 1 are happy numbers.
Example: 19 is a happy number

1^2 + 9^2 = 82
8^2 + 2^2 = 68
6^2 + 8^2 = 100
1^2 + 0^2 + 0^2 = 1

一刷
题解:如果不停地拆分并求digit square sum, 可能陷入一种循环。如果最终收敛在1,那么表示是happy的,如果是不停地重复几个数字,那么是unhappy的。这是终止条件。于是这个可以借鉴linkedlist是否有环的快慢指针来做。

public class Solution {
    
    private int digitSquareSum(int n){
        int sum = 0, tmp;
        while(n>0){
            tmp = n%10;
            sum += tmp*tmp;
            n /= 10;
        }
        return sum;
    }
    
    
    
    public boolean isHappy(int n) {
        int slow, fast;
        slow = fast = n;
        do{
            slow = digitSquareSum(slow);
            fast = digitSquareSum(fast);
            fast = digitSquareSum(fast);
        }while(slow!=fast);
        if(slow == 1) return true;
        else return false;
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 13,479评论 0 23
  • 故障: 10年后的陆尊检查灯光,发现后雾灯不亮 诊断: 检查灯光,后雾灯不亮,一般别克车灯光不亮都是灯泡灯丝烧断,...
    宏宇_8a57阅读 4,509评论 0 1
  • 真高手,我们回顾一下我个人的定义: “在对市场整体本质的全面客观正确的认知前提下,通过对市场运行的普遍规律和特殊规...
    牧股堂阅读 1,599评论 0 1
  • 去年开始就陆陆续续参加公司组织的徒步活动,大约一月一次,一次10公里的频率,刚开始的时候是抗拒的。 海南的天气无比...
    悠爷阅读 1,326评论 1 0