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

  • 12 + 92 = 82
  • 82 + 22 = 68
  • 62 + 82 = 100
  • 12 + 02 + 02 = 1

Credits:
Special thanks to @mithmatt and @ts for adding this problem and creating all test cases.


  1. public class Solution {
  2. public int GetSquareSum(int num)
  3. {
  4. int sum = 0;
  5. while (num >= 1)
  6. {
  7. if (num >= 10)
  8. {
  9. sum += (num % 10) * (num % 10);
  10. }
  11. else
  12. {
  13. sum += num * num;
  14. }
  15. num = num/10;
  16. }
  17. return sum;
  18. }
  19. public bool IsHappy(int n)
  20. {
  21. List<int> numberList = new List<int>();
  22. while (true)
  23. {
  24. n = GetSquareSum(n);
  25. if (n == 1)
  26. {
  27. return true;
  28. }
  29. else if (numberList.IndexOf(n) >= 0)
  30. {
  31. return false;
  32. }
  33. numberList.Add(n);
  34. }
  35. }
  36. }





原文地址:https://www.cnblogs.com/xiejunzhao/p/f7bc4135e1a4a09d1e9034db83298e97.html