码迷,mamicode.com
首页 > 其他好文 > 详细

Count Primes -- leetcode

时间:2018-04-09 15:05:24      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:post   neu   复杂   size   pre   i++   rgb   bottom   时间   

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

标签:post   neu   复杂   size   pre   i++   rgb   bottom   时间   

原文地址:https://www.cnblogs.com/zhchoutai/p/8759183.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!