美文网首页
258. Add Digits

258. Add Digits

作者: RobotBerry | 来源:发表于2017-05-08 10:29 被阅读0次

问题

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

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

例子

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

分析

1=>1 2=>2 3=>3 4=>4 5=>5 6=>6 7=>7 8=>8 9=>9 10=>1 12=>2...
似乎可以看出,结果就是余9的数字。用35478验证一下,结果是9,余9是0。不对,应该要对9的倍数特殊对待:9的倍数的结果就是9.

要点

找规律

时间复杂度

O(1)

空间复杂度

O(1)

代码

分类讨论

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

合并情况

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

相关文章

  • Leetcode PHP题解--D69 258. Add Dig

    D69 258. Add Digits 题目链接 258. Add Digits 题目分析 给定一个数字,给每一位...

  • 2019-02-02

    LeetCode 258. Add Digits Description Given a non-negative...

  • 258. Add Digits

    258. Add Digits[思路]数字累加,将给定的一个整数,将个位,十位,百位等相加,连续操作,直到最后的值...

  • 258. Add Digits

    循环: 这个办法很神奇

  • 258. Add Digits

    Problem Given a non-negative integer num, repeatedly add ...

  • 258. Add Digits

    问题 Given a non-negative integer num, repeatedly add all i...

  • 258. Add Digits

    1.描述 Given a non-negative integer num, repeatedly add all...

  • 258. Add Digits

    C++ Java Javascript 题目问能不能做出不用循环和递归的O(1)复杂度,没做出来,(╯‵□′)╯︵...

  • 258. Add Digits

    Given a non-negative integernum, repeatedly add all its d...

  • 258. Add Digits

    传统的loop方法 我有点讨厌的trick方法: 对于B进制来说 N最后遗留下来的数符合以下规则:1.如果N=0,...

网友评论

      本文标题:258. Add Digits

      本文链接:https://www.haomeiwen.com/subject/vzlmtxtx.html