返回介绍

lcof / 面试题44. 数字序列中某一位的数字 / README

发布于 2024-06-17 01:04:42 字数 4490 浏览 0 评论 0 收藏 0

面试题 44. 数字序列中某一位的数字

题目描述

数字以0123456789101112131415…的格式序列化到一个字符序列中。在这个序列中,第5位(从下标0开始计数)是5,第13位是1,第19位是4,等等。

请写一个函数,求任意第n位对应的数字。

 

示例 1:

输入:n = 3
输出:3

示例 2:

输入:n = 11
输出:0

 

限制:

  • 0 <= n < 2^31

注意:本题与主站 400 题相同:https://leetcode.cn/problems/nth-digit/

解法

方法一:数学

位数为 $k$ 的最小整数和最大整数分别为 $10^{k-1}$ 和 $10^k-1$,因此 $k$ 位数的总位数为 $k \times 9 \times 10^{k-1}$。

我们用 $k$ 表示当前数字的位数,用 $cnt$ 表示当前位数的数字的总数,初始时 $k=1$, $cnt=9$。

每次将 $n$ 减去 $cnt \times k$,当 $n$ 小于等于 $cnt \times k$ 时,说明 $n$ 对应的数字在当前位数的数字范围内,此时可以计算出对应的数字。

具体做法是,首先计算出 $n$ 对应的是当前位数的哪一个数字,然后计算出是该数字的第几位,从而得到该位上的数字。

时间复杂度 $O(\log_{10} n)$,空间复杂度 $O(1)$。其中 $n$ 为给定的数字。

class Solution:
  def findNthDigit(self, n: int) -> int:
    k, cnt = 1, 9
    while k * cnt < n:
      n -= k * cnt
      k += 1
      cnt *= 10
    num = 10 ** (k - 1) + (n - 1) // k
    idx = (n - 1) % k
    return int(str(num)[idx])
class Solution {
  public int findNthDigit(int n) {
    int k = 1, cnt = 9;
    while ((long) k * cnt < n) {
      n -= k * cnt;
      ++k;
      cnt *= 10;
    }
    int num = (int) Math.pow(10, k - 1) + (n - 1) / k;
    int idx = (n - 1) % k;
    return String.valueOf(num).charAt(idx) - '0';
  }
}
class Solution {
public:
  int findNthDigit(int n) {
    int k = 1, cnt = 9;
    while (1ll * k * cnt < n) {
      n -= k * cnt;
      ++k;
      cnt *= 10;
    }
    int num = pow(10, k - 1) + (n - 1) / k;
    int idx = (n - 1) % k;
    return to_string(num)[idx] - '0';
  }
};
func findNthDigit(n int) int {
  k, cnt := 1, 9
  for k*cnt < n {
    n -= k * cnt
    k++
    cnt *= 10
  }
  num := int(math.Pow10(k-1)) + (n-1)/k
  idx := (n - 1) % k
  return int(strconv.Itoa(num)[idx] - '0')
}
/**
 * @param {number} n
 * @return {number}
 */
var findNthDigit = function (n) {
  let k = 1,
    cnt = 9;
  while (k * cnt < n) {
    n -= k * cnt;
    ++k;
    cnt *= 10;
  }
  const num = Math.pow(10, k - 1) + (n - 1) / k;
  const idx = (n - 1) % k;
  return num.toString()[idx];
};
public class Solution {
  public int FindNthDigit(int n) {
    int k = 1, cnt = 9;
    while ((long) k * cnt < n) {
      n -= k * cnt;
      ++k;
      cnt *= 10;
    }
    int num = (int) Math.Pow(10, k - 1) + (n - 1) / k;
    int idx = (n - 1) % k;
    return num.ToString()[idx] - '0';
  }
}

方法二

class Solution:
  def findNthDigit(self, n: int) -> int:
    if n < 10:
      return n
    n -= 10
    k, p = 2, 10
    while n >= 9 * k * p:
      n -= 9 * k * p
      k += 1
      p *= 10
    x = p + n // k
    return int(str(x)[n % k])
class Solution {
  public int findNthDigit(int n) {
    if (n < 10) {
      return n;
    }
    n -= 10;
    int k = 2, p = 10;
    while (n >= (long) 9 * k * p) {
      n -= 9 * k * p;
      ++k;
      p *= 10;
    }
    int x = p + n / k;
    return String.valueOf(x).charAt(n % k) - '0';
  }
}
class Solution {
public:
  int findNthDigit(int n) {
    if (n < 10) {
      return n;
    }
    n -= 10;
    int k = 2, p = 10;
    while (n >= 9ll * k * p) {
      n -= 9 * k * p;
      ++k;
      p *= 10;
    }
    int x = p + n / k;
    return to_string(x)[n % k] - '0';
  }
};
func findNthDigit(n int) int {
  if n < 10 {
    return n
  }
  n -= 10
  k, p := 2, 10
  for n >= 9*k*p {
    n -= 9 * k * p
    k++
    p *= 10
  }
  x := p + n/k
  return int(strconv.Itoa(x)[n%k] - '0')
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文