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

【数学】Count Primes

时间:2015-04-28 23:01:22      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:c++   程序员   面试   

题目:leetcode

Count Primes

Description:

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

分析:

求出比n小的素数的个数,这个问题可以用排除法做,参考http://www.cnblogs.com/grandyang/p/4462810.html

 int countPrimes(int n) {
        if(n<=2)
        return 0;
        
        int res=0;
        int size=sqrt(n);
        vector<char> b(n+1,true);
        for(int i=2;i<=size;++i)
        {
            if(b[i]==false)
            continue;
            for(int j=2*i,k=3;j<n;j=k*i,++k)
            {
                b[j]=false;
            }
        }
        
         for(int i=2;i<n;++i)
         {
             if(b[i]==true)
                ++res;
         }
      
        return res;
        
    }


【数学】Count Primes

标签:c++   程序员   面试   

原文地址:http://blog.csdn.net/bupt8846/article/details/45340787

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