`
hcx2013
  • 浏览: 90372 次
社区版块
存档分类
最新评论

Count Primes

 
阅读更多

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

 

public class Solution {
    public int countPrimes(int n) {
    	boolean[] flag = new boolean[n];
    	int res = 0;
        for (int i = 2; i < n; i++) {
			if (flag[i]) {
				continue;
			}
			res++;
			for (int j = i; j < n; j += i) {
				flag[j] = true;
			}
		}
        return res;
    }
}

 

分享到:
评论

相关推荐

    java-leetcode题解之Count Primes.java

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

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

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

    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代码).docx

    - **类定义**:`CountPrimes` 类包含一个 `countPrimes` 方法,用于计算小于n的所有质数的数量。 - **方法参数**:`countPrimes` 方法接受一个整数参数n。 - **初始化质数数组**:`boolean[] isPrime = new boolean...

    JAVA-classical-algorithm-40-items.rar_40

    2. **区间内素数计数**:接下来,你需要编写一个方法`countPrimes(int start, int end)`,用于统计start和end(包括)之间的素数数量。这可以通过遍历该区间并对每个数应用`isPrime()`函数来实现。 ```java public ...

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

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

    Leetcode 计数质数.sln

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

    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 ...

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

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

    山东大学07年计算机复试上机题与笔试真题

    int countPrimes(int n) { vector&lt;bool&gt; isPrime(n+1, true); int count = 0; isPrime[0] = isPrime[1] = false; for (int p = 2; p * p ; p++) { if (isPrime[p]) { for (int i = p * p; i ; i += p) { ...

    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部分试题解析

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

    程序设计精选

    int countPrimes() { int count = 0; for(int i = 100; i ; i++) { if(isPrime(i)) { count++; } } return count; } ``` #### 5. 计算整数n的所有因子之和(不包括1与自身) 此功能涉及到寻找一个给定整数...

    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最全代码

    ...The number of questions is increasing recently. Here is the classification of all `468` questions. ...I'll keep updating for full summary and better solutions....|-----|---------------- | --------------- |...

    JS实现计算小于非负数n的素数的数量算法示例

    通过运行`countPrimes(10)`和`countPrimes(100)`,我们可以得到小于10和100的素数数量。通过运行`PrimesList(100,200)`则可以获得100到200之间所有素数的列表。 本文还提到了一些JavaScript编程的高级技巧,包括...

    python求质数的3种方法

    本文为大家分享了多种方法求质数...def countPrimes1(self, n): :type n: int :rtype: int if n&lt;=2: return 0 else: res=[] for i in range(2,n): flag=0 # 质数标志,=0表示质数 for j in range(2,i):

    怎么把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...

Global site tag (gtag.js) - Google Analytics