【LeetCode】剑指 Offer 44. 数字序列中某一位的数字

【LeetCode】剑指 Offer 44. 数字序列中某一位的数字,第1张

【LeetCode】剑指 Offer 44. 数字序列中某一位的数字 【LeetCode】剑指 Offer 44. 数字序列中某一位的数字

文章目录
  • 【LeetCode】剑指 Offer 44. 数字序列中某一位的数字

package offer;

public class Solution44 {
    public static void main(String[] args) {
        int n = 11;
        Solution44 solution = new Solution44();
        System.out.println(solution.method(n));
    }

    private int method(int n) {
        int digit = 1;
        long count = 9;
        long start = 1;
        while (n > count) {
            n -= count;
            digit += 1;
            start *= 10;
            count = digit * start * 9;
        }
        long num = start + (n - 1) / digit;
        return Long.toString(num).charAt((n - 1) % digit) - '0';
    }
}

//时间复杂度为 O(logn)
//空间复杂度为 O(logn)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5695341.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存