首页 > 其他 > 详细

两种 eratosthenes 筛法的时间比较,第二种快很多会比较好用

时间:2014-08-11 15:09:52      阅读:306      评论:0      收藏:0      [点我收藏+]
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;


const int maxn = 10000005;
int vis[maxn];
int n;
//int eratosthenes()
//{
//    memset(vis,0,sizeof(vis));
//    for(int i=2;i<=n;i++)
//    {
//        for(int j=i*2;j<=n;j+=i)
//            vis[j]=1;
//    }
//}
int eratosthenes()///当算到10000000时快大概4秒的时间。此方法大概一秒能算出所有素数。
{
    memset(vis,0,sizeof(vis));
    for(int i=2;i<=(int)(sqrt(n)+0.5);i++)
    {
        if(!vis[i])
        for(int j=i*i;j<=n;j+=i)
            vis[j]=1;
    }
}


int main()
{
    scanf("%d",&n);
    eratosthenes();
    int cnt=0;
    for(int i=2;i<=n;i++)
    {
        if(!vis[i])
        {
            cnt++;
//            printf("%d ",i);
        }
    }
    printf("\nthe number :%d\n",cnt);
    return 0;
}

两种 eratosthenes 筛法的时间比较,第二种快很多会比较好用,布布扣,bubuko.com

两种 eratosthenes 筛法的时间比较,第二种快很多会比较好用

原文:http://blog.csdn.net/u013382399/article/details/38491367

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!