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

Leetcode 202 Happy Number 弗洛伊德判环

时间:2016-01-15 14:34:26      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

弗洛伊德判环!

 1 class Solution {
 2 public:
 3     int change(int n){
 4         int ans  = 0;
 5         for ( ; n!=0 ; ans+= (n%10)*(n%10),n/=10);
 6         return ans;
 7     }
 8     bool isHappy(int n) {
 9         int one = n;
10         int two = n;
11         while(1){
12             one = change(one);
13             two = change(change(two));
14             if(one == 1 || two == 1) return true;
15             if(one == two) return false;
16         }
17         
18     }
19 };

 

Leetcode 202 Happy Number 弗洛伊德判环

标签:

原文地址:http://www.cnblogs.com/onlyac/p/5133010.html

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