剑指offer-31-整数中1出现的次数(从1到n整数中1出现的次数) -- Java实现

题目

求出113的整数中1出现的次数,并算出1001300的整数中1出现的次数?为此他特别数了一下1~13中包含1的数字有1、10、11、12、13因此共出现6次,但是对于后面问题他就没辙了。ACMer希望你们帮帮他,并把问题更加普遍化,可以很快的求出任意非负整数区间中1出现的次数(从1 到 n 中1出现的次数)。

分析

思路一:

代码:

public class Solution {
    public int NumberOf1Between1AndN_Solution(int n) {
        int cntI = 0;
        for(int i = 1; i <= n; i++) {
            int tmp = i;
            while(tmp != 0) {
                if(tmp % 10 == 1) {
                    cntI++;
                }
                tmp /= 10;
            }
        }
        return cntI;
    }
}

猜你喜欢

转载自blog.csdn.net/weixin_42054926/article/details/106092074