leetcode题库——各位相加

版权声明: https://blog.csdn.net/Dorothy_Xue/article/details/84144078

题目描述:

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

示例:

输入: 38

输出: 2 

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

进阶:

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

方法1:有循环和递归

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

方法2:无递归无循环

class Solution {
public:
    int addDigits(int num) {
        if(num%9==0&&num!=0)return 9;
        return num%9;
    }
};

思路:

简单题,看代码就懂了。

猜你喜欢

转载自blog.csdn.net/Dorothy_Xue/article/details/84144078