FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/code/lc204.java at master · mJackie/leetcode · GitHub
mJackie
/
leetcode
Public
Notifications
You must be signed in to change notification settings
Fork
135
Star
405
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode
/
code
/
lc204.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (23 loc) · 597 Bytes
Breadcrumbs
leetcode
/
code
/
lc204.java
Copy path
File metadata and controls
23 lines (23 loc) · 597 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package
code
;
/*
* 204. Count Primes
* 题意:计算小于n的素数的个数
* 难度:Easy
* 分类:Hash Table, Math
* 思路:两个循环,相乘得到的数不是素数。
* Tips:
*/
public
class
lc204
{
public
int
countPrimes
(
int
n
) {
if
(
n
<
3
)
return
0
;
boolean
[]
flags
=
new
boolean
[
n
];
int
sum
=
0
;
for
(
int
i
=
2
;
i
<
n
;
i
++){
if
(
flags
[
i
]==
false
)
sum
++;
// 内循环已经计算过了
for
(
int
j
=
2
;
i
*
j
<
n
;
j
++){
// i*j<n
flags
[
i
*
j
] =
true
;
}
}
return
sum
;
}
}
Back
|
FazBrowse Home
|
New Git URL