JZ31 整数中1出现的次数(从1到n整数中1出现的次数)

该博客介绍了如何通过位运算优化算法,解决从1到n的整数序列中1出现的次数问题。提供了一个按位遍历的解决方案,详细解释了代码逻辑,包括高位、低位和当前位的更新,以及不同情况下1的计数方法。这种方法避免了暴力循环,提高了效率。
摘要由CSDN通过智能技术生成

描述 输入一个整数 n ,求1~n这n个整数的十进制表示中1出现的次数
例如,1~13中包含1的数字有1、10、11、12、13因此共出现6次

示例1 输入: 13 返回值: 6

思路1:暴力循环

就不写了

思路2:按位遍历

https://leetcode-cn.com/problems/1nzheng-shu-zhong-1chu-xian-de-ci-shu-lcof/submissions/

public class Solution {

    public static void main(String[] args) {
        int n = 12;
        System.out.println(NumberOf1Between1AndN_Solution(n));
    }

    private static int NumberOf1Between1AndN_Solution(int n) {
        int low = 0; //低位
        int cur = n % 10; //当前位
        int high = n / 10; //高位
        int digit = 1; //位数
        int res = 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 = high / 10;
            digit *= 10;
        }
        return res;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值