CountPrimes
CountPrimes.java 源码
package datastructure.array.leetcode;
/**
* 计数质数
*/
public class CountPrimes {
/**
* 暴力法,超出时间限制
*/
public int countPrimes1(int n) {
int res = 0;
for (int i = 2; i < n; i++) {
int j = 2;
for (; j < i; j++) {
if (i % j == 0) {
break;
}
}
if (j == i) {
res++;
}
}
return res;
}
/**
* 厄拉多塞筛法
*/
public int countPrimes2(int n) {
boolean[] states = new boolean[n];
int res = 0;
for (int i = 2; i < n; i++) {
if (!states[i]) {
res++;
//排除不是质数的数
for (int j = i * 2; j < n; j+=i) {
states[j] = true;
}
}
}
return res;
}
}
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦