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

204. Count Primes

时间:2017-09-29 01:47:11      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:i++   less   highlight   numbers   log   new   logs   ntp   script   

Description:

Count the number of prime numbers less than a non-negative number, n.

动归来做, 

public int countPrimes(int n) {
        boolean[] notPrime = new boolean[n];
        int ans = 0;
        if (n < 2) {
            return ans;
        }
        for (int i = 2; i < n; i++) {
            if (!notPrime[i]) {
                ans++;
                for (int j = 2; i * j < n; j++) {
                    
                    notPrime[i * j] = true;
                }
            }
        }
        return ans;
        
    }

  

204. Count Primes

标签:i++   less   highlight   numbers   log   new   logs   ntp   script   

原文地址:http://www.cnblogs.com/apanda009/p/7609098.html

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