-
Notifications
You must be signed in to change notification settings - Fork 1
/
Q44_.java
55 lines (46 loc) · 1.29 KB
/
Q44_.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package jianzhi_offer;
/**
* @author weiyuwang
* @since 2019/2/1 21:46
*/
public class Q44_ {
/**
* 数字以 012345678910111213... 的格式序列化到一个字符串中。
* 在这个序列中,第5位是5 第13位是1 ,请写一个函数求任意第 n 位对应的数字
*/
public int digitAtIndex(int index) {
if (index < 0) {
return -1;
}
int digits = 1;
while (true) {
int numbers = countOfInteger(digits);
if (index < numbers * digits) {
return digitAtIndex(index, digits);
}
index -= digits * numbers;
digits++;
}
}
private int digitAtIndex(int index, int digits) {
int number = beginNumber(digits) + index / digits;
int indexFromRight = digits - index % digits;
for (int i = 0; i < indexFromRight; i++) {
number /= 10;
}
return number % 10;
}
private int beginNumber(int digits) {
if (digits == 1) {
return 0;
}
return (int) Math.pow(10, digits - 1);
}
private int countOfInteger(int digits) {
if (digits == 1) {
return 10;
}
int count = (int) Math.pow(10, digits - 1);
return 9*count;
}
}