暴力解法,超过时预定
class Solution {
public:
int countDigitOne(int n) {
int counter = 0;
for(int i = 1;i <= n;i++){
int b = i;
while(b > 0){
if( b%10 == 1)
counter++;
b /= 10;
}
}
return counter;
}
};
按照每个位置统计能够出现1的次数。
将整个字符分成3段,当前所指的位数的前面都是高位,当前位置之后的都是低位。
1)如果当前的位置数字为0,这个时候该位置出现1的情况只取决于高位
(找到该位数字为1,并且离题目所给的数字最大的数字,此时按照2)中的情况进行计算。
2)如果当前的位置为1,这个时候该位置出现1的情况取决于高位和低位
(这个好理解,这个时候高位和低位的变化没有限制)
3)如果当前的位置大于1,低位的每个位置上都有10种取法,高位有(高位数字 + 1)种取法,根据乘法原理即可得到结果
class Solution {
public int countDigitOne(int n) {
int digit = 1, res = 0;
//digit为当前位置的权值
int high = n / 10, cur = n % 10, low = 0;
//最开始高位,当前位,低位的初始化
while(high != 0 || cur != 0) {
if(cur == 0) res += high * digit;
else if(cur == 1) res += high * digit + low + 1;
else res += (high + 1) * digit;
low += cur * digit;
//获得低位数字
cur = high % 10;
更新当前位置
high /= 10;
//更新高位
digit *= 10;
//更新权值
}
return res;
}
}
作者:jyd
链接:https://leetcode-cn.com/problems/1nzheng-shu-zhong-1chu-xian-de-ci-shu-lcof/solution/mian-shi-ti-43-1n-zheng-shu-zhong-1-chu-xian-de-2/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。