题目:小于非负数n的质数个数(不包括1)
Count the number of prime numbers less than a non-negative number, n.
Input: 10 Output: 4 Explanation: There are 4 prime numbers less than 10, they are 2, 3, 5, 7.
参考:https://www.cnblogs.com/grandyang/p/4462810.html
思路:
从2开始遍历到根号n:
先找到第一个质数2,然后将其所有的倍数全部标记出来
然后到下一个质数3,标记其所有倍数,
以此类推,直到根号n,此时数组中未被标记的数字就是质数。
使用一个n-1长度的数组来记录每个数字是否被标记
(图源见参考)
代码:
class Solution {
public int countPrimes(int n) {
int count = 0;
if(n>0) {
if(n<3) {
return 0;
}
int[] list = new int[n];
list[0] = -1;
list[1] = -1;
int sq = (int) Math.sqrt(n);
for(int i=2;i<=sq;i++) {
if(list[i]==0) {
list[i]=-1;
for(int j=2*i;j<n;j=j+i) {
list[j] = j;
}
}
}
for(int i=2;i<n;i++) {
if(list[i]==-1 || list[i]==0) {
count++;
}
}
}
return count;
}
}