`

Leetcode - Count Primes

    博客分类:
  • Math
 
阅读更多
[ref]
https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes
https://leetcode.com/discuss/34622/my-c-solutions-in-44ms-time-nearly-o-n-and-space-nearly-o-n

public class Solution {
    // https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes
    // https://leetcode.com/discuss/34622/my-c-solutions-in-44ms-time-nearly-o-n-and-space-nearly-o-n
    public int countPrimes(int n) {
        if (n < 3) return 0;
        int sqrtN = (int)Math.sqrt(n); // trick 0: use sqrt
        int counter = n / 2; //trick 1: all even num except 2 is not prime 
        boolean[] prime = new boolean[n];
        for (int i = 1; i < n; i += 2)
            prime[i] = true;
        for (int i = 3; i <= sqrtN; i += 2) { // trick 2: skip even num
            if (prime[i]) {
                // mark multiples of i not prime
                for (int j = i * i; j < n; j += i) { // trick 3: start from i*i
                    if (prime[j]) {
                        prime[j] = false;
                        counter--; // trick 4: avoid another loop
                    }
                }
            }
        }
        return counter;
    }
}
分享到:
评论

相关推荐

    C++-leetcode题解之204-Count-Primes.cpp

    标题"C++-leetcode题解之204-Count-Primes.cpp"指向了本文的主要内容,即一个针对LeetCode在线编程平台的204题的C++编程语言解答。这道题目名为"Count Primes",即统计质数的个数,是算法和数据结构领域中一个非常...

    python-leetcode题解之204-Count-Primes.py

    在编写关于“204-Count-Primes”这个题目的题解时,我们首先需要了解题目本身的内容。该题目是来自著名的在线编程题目库leetcode,题目要求实现一个函数来计算小于给定整数n的所有质数(prime numbers)的数量。质数...

    java-leetcode题解之204-Count-Primes

    public int countPrimes(int n) { boolean[] isPrime = new boolean[n]; Arrays.fill(isPrime, true); for (int i = 2; i * i ; i++) { if (isPrime[i]) { for (int j = i * i; j ; j += i) { isPrime[j] = ...

    java-leetcode题解之Count Primes.java

    该平台的题目覆盖了从基础到高级多个层次,其中“Count Primes”是其中的一道常见题目。该问题主要是要求编程者编写一个算法,用以计算小于给定数值N的质数的数量。质数是只能被1和它本身整除的大于1的自然数。 ...

    lrucacheleetcode-leetcode-java:力码研究

    Count Primes**:虽然不是直接的LRU问题,但可以使用LRU缓存优化解决方案,避免重复计算素数。 通过分析并解决这些LeetCode题目,开发者可以深入理解LRU缓存的工作原理,并提高其编程技巧。这个项目"leetcode-java...

    LeetCode最全代码

    # [LeetCode](https://leetcode.com/problemset/algorithms/) ![Language](https://img.shields.io/badge/language-Python%20%2F%20C++%2011-orange.svg) [![License]...

    python-leetcode面试题解之第204题计数质数-题解.zip

    def countPrimes(n): if n return 0 primes = [True] * n primes[0], primes[1] = [False, False] for i in range(2, int(n**0.5)+1): if primes[i]: for j in range(i*i, n, i): primes[j] = False ...

    怎么把leetcode切成英文-Code-Problem-Practice:重新编码我的编码练习程序

    countPrimes(int n) { if (n isPrime(n+1, 1); int count = 1; for (int i=3; i&lt;n; i+=2){ if (isPrime[i]==1) { count++; for (int j = i; j&lt;=n/i; j+=2) isPrime[j*i] = 0; } } return count; } :star: 2020...

    java面试-leetcode面试题解之第204题计数质数-java题解.zip

    public int countPrimes(int n) { if (n ) return 0; boolean[] isPrime = new boolean[n]; Arrays.fill(isPrime, true); int count = 0; for (int i = 2; i * i ; i++) { if (isPrime[i]) { count++; for...

    Leetcode 计数质数.sln

    LeetCode 204的题目是“计数质数”(Count Primes),要求统计所有小于非负整数n的质数的数量。解决这个问题的关键是高效地识别质数,并减少不必要的重复检查。在C#中,一个常见的解决方案是使用埃拉托斯特尼筛法...

    leetcode数组下标大于间距-LeetCode:努力的一天要i++

    countPrimes(int n) { int count = 0; for(int i = 2; i &lt; n; i++) { bool sign = true; for(int j = 2; j &lt; i; j++) { if(i % j == 0) { sign = false; break; } } if(sign) count++; ; } return count; } ...

    LeetCode和剑指offer中的算法题的题目和解法 和 常见算法汇总

    1.7 Count Primes(质数的个数) 2. Algorithm Implementation Questions (算法实现题) 3. Linked List Questions(链表相关问题) 4. Array Questions(数组相关问题) 5. Binary Tree Questions(二叉树相关问题...

    Leetcode部分试题解析

    29. **Count Primes**:计数素数。可以使用埃拉托斯特尼筛法(Sieve of Eratosthenes)来高效找出一定范围内的素数。 以上就是LeetCode中部分Python编程题目的解析概述,通过这些题目,可以深入理解Python编程、...

    leetcode数组下标大于间距-problems:问题

    leetcode数组下标大于间距 problems 1.Exercise ...CountPrimes:计算小于n的素数个数,数学 bestsubstring:将字符串尽可能分割为多个部分,各子串不包含相同字符暴力 2pow:计算2的N次幂 dp/ chrous:相

Global site tag (gtag.js) - Google Analytics