-
Notifications
You must be signed in to change notification settings - Fork 0
/
204.计数质数.cpp
48 lines (39 loc) · 1.11 KB
/
204.计数质数.cpp
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
/*
* @lc app=leetcode.cn id=204 lang=cpp
*
* [204] 计数质数
*/
// @lc code=start
class Solution {
public:
int countPrimes(int n) {
// 方法一, 会超时。
// 试除法 筛质数。 效率有点低。
/*
if (!n || n == 1) return 0;
int sum = 0;
for (int i = 2; i < n; i ++ ){
bool flag = true;
for (int j = 2; j <= sqrt(i); j ++ ){
if (i % j == 0 ){
flag = false;
break;
}
}
if (flag) sum ++ ;
}
return sum;
*/
// 方法二, 埃及筛法, 但是会重复,标记。接近线性筛法。
int sum = 0;
vector<int> nums(n + 1, 0);
for (int i = 2; i < n; i ++ ) {
if (nums[i]) continue;
sum ++ ;
for (int j = 1; j <= n/i; j ++ ) nums[i * j] = 1;
}
return sum;
// 方法三, 线性筛法, 不想写了。代码有点长。
}
};
// @lc code=end