233 Number of Digit One 数字1的个数

Posted lina2014

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了233 Number of Digit One 数字1的个数相关的知识,希望对你有一定的参考价值。

给定一个整数 n,计算所有小于等于 n 的非负数中数字1出现的个数。

例如:

给定 n = 13,

返回 6,因为数字1出现在下数中出现:1,10,11,12,13。

详见:https://leetcode.com/problems/number-of-digit-one/description/

方法一:

class Solution {
public:
    int countDigitOne(int n) {
        int cnt=0;
        for(long long m=1;m<=n;m*=10)
        {
            int a=n/m,b=n%m;
            if(a%10==0)
            {
                cnt+=a/10*m;
            }
            else if(a%10==1)
            {
                cnt+=a/10*m+(b+1);
            }
            else
            {
                cnt+=(a/10+1)*m;
            }
        }
        return cnt;
    }
};

方法二:

class Solution {
public:
    int countDigitOne(int n) {
        int cnt=0;
        for(long long m=1;m<=n;m*=10)
        {
            cnt+=(n/m+8)/10*m+(n/m%10==1)*(n%m+1);
        }
        return cnt;
    }
};

  

以上是关于233 Number of Digit One 数字1的个数的主要内容,如果未能解决你的问题,请参考以下文章

233. Number of Digit One

leetcode 233. Number of Digit One

LeetCode233. Number of Digit One

233. Number of Digit One

LeetCode-233 Number of Digit One

[LeetCode]233 Number of Digit One(数位DP)