Count Primes -- leetcode
Posted zhchoutai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Count Primes -- leetcode相关的知识,希望对你有一定的参考价值。
Description:
Count the number of prime numbers less than a non-negative number,?n.
基本思路:筛法
1。 2 为素数。 筛掉以2为因子的数。
即 2 * 2, 2*3, 2*4,2*5
2, 寻找到下一个未被筛除的数。如3. ?再筛掉以3为因子的数。
3, 反复步骤2.
时间复杂度为O(n)
class Solution { public: int countPrimes(int n) { vector<int> sieve(n, true); int count = 0; for (int i=2; i<n; i++) { if (sieve[i]) { ++count; for (int j=i+i; j<n; j+=i) { sieve[j] = false; } } } return count; } };
以上是关于Count Primes -- leetcode的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode----204. Count Primes(Java)
[LeetCode][JavaScript]Count Primes