Count Primes

Posted

tags:

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

题目:

Description:

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

cpp:

class Solution {
public:
    int countPrimes(int n) {
        bool isPrime[n];
        for (int i = 0; i <= n; i++) {
            isPrime[i] = true;
        }

        for (int i = 2; i*i < n; i++) {
            if (!isPrime[i])
                continue;
            for (int j = i * i; j <= n; j += i) {
                isPrime[j] = false;
            }
        }
        int count = 0;
        for (int i = 2; i < n; i++) {
            if (isPrime[i])
                count++;
        }
        return count;
    }
};

python:

class Solution:
    # @param {integer} n
    # @return {integer}
    def countPrimes(self, n):
        isPrime = [True] * max(n, 2)
        isPrime[0], isPrime[1] = False, False
        x = 2
        while x * x < n:
            if isPrime[x]:
                p = x * x
                while p < n:
                    isPrime[p] = False
                    p += x
            x += 1
        return sum(isPrime)

 

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

Oracle 中count count(*) 和count(列名) 函数的区别

Mysql(18)—count(*)count 和count(字段)的区别以及count()查询优化手段

count(*),count,count(c_bh)效率问题

count,count(*),count(主键) 性能对比

MySQL中count是怎样执行的?———count,count(id),count(非索引列),count(二级索引列)的分析

MySQL中count是怎样执行的?———count,count(id),count(非索引列),count(二级索引列)的分析