整数中1出现的次数

  求出1~13的整数中1出现的次数,并算出100~1300的整数中1出现的次数?为此他特别数了一下1~13中包含1的数字有1、10、11、12、13因此共出现6次,但是对于后面问题他就没辙了。ACMer希望你们帮帮他,并把问题更加普遍化,可以很快的求出任意非负整数区间中1出现的次数(从1 到 n 中1出现的次数)。


代码:
来源:https://www.nowcoder.com/profile/448404/codeBookDetail?submissionId=1505827

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class Solution {
public int NumberOf1Between1AndN_Solution(int n) {
int count=0;
while(n>0){ //遍历n到1
String str = String.valueOf(n); //整数转字符串
char[] arr = str.toCharArray(); //字符串转字符数组
for(int i=0; i<arr.length; i++){
if(arr[i]=='1')
count++;
}
n--;
}

return count;
}
}

---------------- The End ----------------
0%