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

204 Count Primes

时间:2015-05-28 07:03:35      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

class Solution {
public:
    int countPrimes(int n) {
        int count=0;
        vector<bool>map(n+1,true);
        for(int i=2;i<n;i++){
            if(map[i]){
                count++;
                for(int j=i*2;j<n;j+=i)
                map[j]=false;
            }
        }
        return count;
    }
};

输出小于N质数的个数。

百度了一下埃拉托斯特尼筛法。。听说居然是小学奥数的东西。。

204 Count Primes

标签:

原文地址:http://www.cnblogs.com/footy/p/4534851.html

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