LeetCode400. Nth Digit

本文介绍了一个算法问题,即如何找到无限整数序列中的第N位数字。通过理解序列特点,采用数学和字符串操作相结合的方法,提供了一种高效求解方案。

题目

Find the nth digit of the infinite integer sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, …

Note:
n is positive and will fit within the range of a 32-bit signed integer.

Example 1:

Input:
3

Output:
3

Example 2:

Input:
11

Output:
0

Explanation:
The 11th digit of the sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... is a 0, which is part of the number 10.

答案

public int findNthDigit(int n) {
        int len = 1, start = 1;
        long count = 9;
        while (n > len * count) {
            n -= len * count;
            len++;
            count *= 10;
            start *= 10;
        }
        // (n - 1) 的理解很关键,如果是 n ,则在正好 n == len 的情况下会多出去一位
        start += (n - 1) / len;
        //这里 (n - 1) 减的那一位正好和 charAt() 从 0 开始多的那一位抵消
        return String.valueOf(start).charAt((n - 1) % len) - '0';
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值