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

40. leetcode 202. Happy Number

时间:2017-04-09 22:07:44      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:eterm   rmi   app   osi   ace   str   com   img   过程   

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

思路:把一个数每一位平方后加和得到一个新的数,然后继续对这个新的数做同样的操作。如果最后能得到一个1,则最原始的数就是一个”Happy Number”。如果在还没达到1的过程中出现循环,则这个数肯定不是。用到C++ 的set。set.count()判断一个数是否在set中,set.insert(),向set 中插入元素。INT_MAX,表示最大整数。

技术分享

 

40. leetcode 202. Happy Number

标签:eterm   rmi   app   osi   ace   str   com   img   过程   

原文地址:http://www.cnblogs.com/vincent93/p/6686637.html

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