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

Count Primes ——LeetCode

时间:2015-06-25 11:55:16      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:

Description:

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

 

题目大意:给一个int,返回小于它的质数的数量。

解题思路:打表。

public class Solution {
    
    public int countPrimes(int n) {
        int[] count = new int[n+5];
        boolean[] isPrime = new boolean[n+5];
        Arrays.fill(isPrime, true);
        isPrime[0]=false;
        isPrime[1]=false;
        for(int i=2;i<=n;i++){
            count[i]+=count[i-1];
            if(isPrime[i]){
                count[i]++;
                for(int j =i*2;j<=n;j+=i){
                    isPrime[j]=false;
                }
            }
        }
        return isPrime[n]?count[n]-1:count[n];
    }
}

 

Count Primes ——LeetCode

标签:

原文地址:http://www.cnblogs.com/aboutblank/p/4599566.html

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