LeetCode —— 258 各位相加

问题描述

给定一个非负整数 num,反复将各个位上的数字相加,直到结果为一位数。

示例:

输入: 38
输出: 2 
解释: 各位相加的过程为:3 + 8 = 11, 1 + 1 = 2。 由于 2 是一位数,所以返回 2。

进阶:
你可以不使用循环或者递归,且在 O(1) 时间复杂度内解决这个问题吗?

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/add-digits
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

执行结果

LeetCode —— 258 各位相加_第1张图片

代码描述

思路:循环判断,直到 num/10==0 ,返回结果即可。

class Solution {
public:
    int addDigits(int num) {
        if(num < 10)    return num;
        int temp = 0;
        temp = comput(num);
        while(temp > 9)
            temp = comput(temp);
        return temp;
    }
    
    int comput(int n)
    {
        int temp = 0;
        while(n > 0)
        {
            temp += n%10;
            n/=10;
        }
        return temp;
    }
};

数学方法:num每加一,结果在1~9的循环队列。可证明。

class Solution {
public:
    int addDigits(int num) {
        if(num < 10)    return num;
        return (num-1)%9+1;
    }
};

 

你可能感兴趣的:(LeetCode解题报告)