204. Count Primes

Posted apanda009

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了204. Count Primes相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode]204.Count Primes

LeetCode----204. Count Primes(Java)

204. Count Primes

204. Count Primes

204. Count Primes

204. Count Primes