码迷,mamicode.com
首页 > 其他好文 > 详细

204. Count Primes

时间:2016-07-21 08:41:56      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

不解释了

 1     public int countPrimes(int n) {
 2         if(n <= 0) {
 3             return 0;
 4         }
 5         boolean[] isPrime = new boolean[n];
 6         for(int i = 1; i < n; i++) {
 7             isPrime[i] = true;
 8         }
 9         for(int i = 2; i * i < n; i++) {
10             if(!isPrime[i]) {
11                 continue;
12             }
13             for(int j = i * i; j < n; j += i) {
14                 isPrime[j] = false;
15             }
16         }
17         int cnt = 0;
18         for(int i = 2; i < n; i++) {
19             if(isPrime[i]) {
20                 cnt++;
21             }
22         }
23         return cnt;
24     }

 

204. Count Primes

标签:

原文地址:http://www.cnblogs.com/warmland/p/5690407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!