Eratosthenes筛法 快速求素数

Posted mirage0

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eratosthenes筛法 快速求素数相关的知识,希望对你有一定的参考价值。

Eratosthenes筛法,快速求素数。

时间复杂度 O(nlogn)。


思想


对于每个不超过n的非负整数p,删除2p,3p,4p,......,当处理完所有数后,还没有被删除的就是素数。


代码


#include <iostream>
using namespace std;

/**
 * Eratosthenes筛法,求1~n以内的素数
 */
int* Eratosthenes(int n) {
    int *vis = new int[n+1];
    memset(vis, false, n+1);
    int m = sqrt(n + 0.5);
    
    for(int i=2; i<=m; i++) 
        if(!vis[i])
            for(int j=i*2; j<=n; j+=i) 
                vis[j] = true; //代表被删除
    
    return vis;
}

int main(int argc, char *argv[]) {
    int n;
    cin >> n;
    int *a = Eratosthenes(n);
    for(int i=2; i<=n; i++)
        if(a[i] == false) 
            cout << i << ‘ ‘;
    cout << endl;
    
    return 0;
}

以上是关于Eratosthenes筛法 快速求素数的主要内容,如果未能解决你的问题,请参考以下文章

埃拉托色尼筛法(Sieve of Eratosthenes)求素数。

查找素数Eratosthenes筛法的mpi程序

一般筛法求素数+快速线性筛法求素数

转载一般筛法求素数+快速线性筛法求素数

筛选 Eratosthenes 素数高达一百万 c++

筛法求素数