码迷,mamicode.com
首页 > 移动开发 > 详细

LeetCode 202. 快乐数 Happy Number

时间:2020-05-29 10:23:19      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:fas   next   info   指针   com   快慢指针   color   技术   return   

技术图片

 

 解法一:哈希表

class Solution {
public:
    bool isHappy(int n) {
        set<int> seen;
        while (n != 1 && !seen.count(n))  //快乐或者存在环跳出
        {
            seen.insert(n);
            n = getNext(n);
        }
        return n == 1;
    }

    int getNext(int n)
    {
        int totalSum = 0;
        while (n > 0)
        {
            int d = n % 10;
            totalSum += d * d;
            n = n / 10;
        }
        return totalSum;
    }
};

 

解法二:快慢指针

class Solution {
public:
    bool isHappy(int n) {
        int slow = n;
        int fast = getNext(n);
        while (slow != 1 && slow != fast)  //快乐或者存在环跳出
        {
            slow = getNext(slow);
            fast = getNext(getNext(fast));
        }
        return slow == 1;
    }

    int getNext(int n)
    {
        int totalSum = 0;
        while (n > 0)
        {
            int d = n % 10;
            totalSum += d * d;
            n = n / 10;
        }
        return totalSum;
    }
};

 

LeetCode 202. 快乐数 Happy Number

标签:fas   next   info   指针   com   快慢指针   color   技术   return   

原文地址:https://www.cnblogs.com/ZSY-blog/p/12985455.html

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