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

[LeetCode] Count Primes

时间:2015-04-28 11:54:15      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:leetcode

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

解题思路

采用Eratosthenes筛选法,依次分别去掉2的倍数,3的倍数,5的倍数,……,最后剩下的即为素数。

实现代码

class Solution {
public:
    int countPrimes(int n) {
        int count = 0;
        bool *b = new bool[n];
        b[2] = true; //2是偶数,但不能被筛掉,需要特殊考虑
        for (int i = 3; i < n; i++)
        {
            if (i & 1)
            {
                b[i] = true; //奇数
            }
            else
            {
                b[i] = false;
            }
        }

        for (int i = 2; i < n; i++)
        {
            if (b[i])
            {
                count++;
                for (int j = 2; j * i < n; j++)
                {
                    b[i * j] = false;
                }
            }
        }

        delete [] b;
        return count;
    }
};

[LeetCode] Count Primes

标签:leetcode

原文地址:http://blog.csdn.net/foreverling/article/details/45332115

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