204. Count Primes

Posted 我的名字叫周周

tags:

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

    /*
     * 204. Count Primes
     * 2016-6-8 by Mingyang
     * 这个题目非常的巧妙,首先从第一个数2开始,所有2的倍数全部变为true
     * 然后继续下一个数,每一个数开始把自己的倍数全部化为true
     */
     public int countPrimes(int n) {
            boolean[] notPrime = new boolean[n];
            int count = 0;
            for (int i = 2; i < n; i++) {
                if (notPrime[i] == false) {
                    count++;
                    for (int j = 2; i*j < n; j++) {
                        notPrime[i*j] = true;
                    }
                }
            }
            return count;
        }

 

以上是关于204. Count Primes的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode]204.Count Primes

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

204. Count Primes

204. Count Primes

204. Count Primes

204. Count Primes