Count the number of prime numbers less than a non-negative number, n.
Example:
Input: 10
Output: 4
Explanation: There are 4 prime numbers less than 10, they are 2, 3, 5, 7.
分析:
返回小于给定非负整数n的所有质数。解题方法就在第二个提示中,这个算法的过程如下图所示,我们从2开始遍历到根号n,先找到第一个质数2,然后将其所有的倍数全部标记出来,然后到下一个质数3,标记其所有倍数,以此类推,直到根号n,此时数组中未被标记的数字就是质数。定义一个n-1长度的bool型数组来记录每个数字是否被标记,注意不包括n。
class Solution {
public:
int countPrimes(int n) {
int count = 0;
vector<bool> m(n-1 , true);
for(int i=2; i*i<=n; i++)
{
if(m[i-1])
{
for(int j=i*i; j<n; j+=i)
{
m[j-1] = false;
}
}
}
for(int j=1; j<n-1; j++)
{
if(m[j])
count++;
}
return count;
}
};