标题:找素数,有比Eratosthenes筛选法更快的算法吗?
取消只看楼主
xxwpk007
Rank: 4
等 级:业余侠客
帖 子:166
专家分:289
注 册:2007-7-29
结帖率:100%
 问题点数:0 回复次数:0 
找素数,有比Eratosthenes筛选法更快的算法吗?
大家有什么好算法。。

程序代码:
#include <stdio.h>
#define MAX 100

int main(void)
{
    int i;
    int j;
    char table[MAX];
    
    for(i = 2;i < MAX;i++)
        table[i] = 1;
    for(i = 2;i < MAX;i++)
        if(table[i] == 1)
            for(j = i;i*j < MAX;j++)
                table[i*j] = 0;
    for(i = 2;i < MAX;i++)
        if(table[i] == 1)
            printf("%d\n",i);

    return 0;
}
搜索更多相关主题的帖子: 素数 Eratosthenes 算法 筛选 
2010-10-21 22:26



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-323599-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.648776 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved