[LeetCode]64. Add Digits数根

Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.

For example:

Given num = 38, the process is like: 3 + 8 = 111 + 1 = 2. Since 2 has only one digit, return it.

Follow up:
Could you do it without any loop/recursion in O(1) runtime?

Hint:

  1. A naive implementation of the above process is trivial. Could you come up with other methods?
  2. What are all the possible results?
  3. How do they occur, periodically or randomly?
  4. You may find this Wikipedia article useful.

Credits:
Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases.

 

Subscribe to see which companies asked this question

 
解法1:利用to_string库函数,只要输入整数的数字个数大于1,则执行自身数字相加的过程。
class Solution {
public:
    int addDigits(int num) {
        string s = to_string(num);
        while (s.size() > 1) {
            int tmp = 0;
            for (int i = 0; i < s.size(); ++i)
                tmp += s[i] - '0';
            s = to_string(tmp);
        }
        return stoi(s);
    }
};

或者直接分别取出某位累加:

class Solution {
public:
    int addDigits(int num) {
        while (num >= 10) {
            int sum = 0;
            while (num > 0) {
                sum += num % 10;
                num /= 10;
            }
            num = sum;
        }
        return num;
    }
};

 

解法2:参考维基百科Digital root

It helps to see the digital root of a positive integer as the position it holds with respect to the largest multiple of 9 less than it. For example, the digital root of 11 is 2, which means that 11 is the second number after 9. Likewise, the digital root of 2035 is 1, which means that 2035 − 1 is a multiple of 9. If a number produces a digital root of exactly 9, then the number is a multiple of 9.

With this in mind the digital root of a positive integer n may be defined by using floor function \lfloor x\rfloor, as

dr(n)=n-9\left\lfloor\frac{n-1}{9}\right\rfloor.

不难写出代码:

 

class Solution {
public:
    int addDigits(int num) {
        return (num - 1) % 9 + 1; //return num - 9 * ((num - 1) / 9);
    }
};

 

 

 

转载于:https://www.cnblogs.com/aprilcheny/p/4946841.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值