gpt4 book ai didi

C++ Sieve of Atkin 忽略了一些质数

转载 作者:太空狗 更新时间:2023-10-29 20:48:56 26 4
gpt4 key购买 nike

最近我一直在研究使用阿特金筛 (http://en.wikipedia.org/wiki/Sieve_of_atkin) 生成其素数的 C++ 素数生成器。我的目标是能够生成任何 32 位数字。我将主要使用它来解决项目欧拉问题。大多数情况下,这只是一个夏季项目。

该程序使用位板来存储素数:即一系列的 1 和 0,例如第 11 位为 1,第 12 位为 0,第 13 位为 1,等等。为了有效使用内存,这实际上是一个字符数组,每个字符包含 8 位。我使用标志和按位运算符来设置和检索位。该算法的要点很简单:使用一些我不假装理解的方程式来定义数字是否被认为是“质数”。这将在大多数情况下得到正确答案,但一些非质数将被标记为质数。因此,在遍历列表时,将刚刚找到的素数的所有倍数设置为“非素数”。这有一个方便的优势,即素数越大,所需的处理器时间就越少。

我已经完成了 90%,还有一个问题:一些素数丢失了。

通过检查位板,我确定在第一遍中省略了这些素数,这基本上为多个方程的每个解切换了一个数字(参见维基百科条目)。我一次又一次地检查了这段代码。我什至尝试增加维基百科文章中显示的范围,这效率较低,但我认为可能会达到一些我不知何故遗漏的数字。没有任何效果。这些数字只是评估为非素数。我的大部分测试都是针对 128 以下的所有素数进行的。在此范围内,这些是被忽略的素数:

23 和 59。

我毫不怀疑,在更高的范围内,会丢失更多(只是不想计算所有这些)。我不知道为什么缺少这些,但它们确实存在。这两个质数有什么特别之处吗?我已经双重和三次检查,发现并修复错误,但我仍然可能遗漏了一些愚蠢的东西。

无论如何,这是我的代码:

#include <iostream>
#include <limits.h>
#include <math.h>

using namespace std;

const unsigned short DWORD_BITS = 8;

unsigned char flag(const unsigned char);
void printBinary(unsigned char);


class PrimeGen
{
public:
unsigned char* sieve;
unsigned sievelen;
unsigned limit;
unsigned bookmark;


PrimeGen(const unsigned);

void firstPass();
unsigned next();

bool getBit(const unsigned);
void onBit(const unsigned);
void offBit(const unsigned);
void switchBit(const unsigned);

void printBoard();
};


PrimeGen::PrimeGen(const unsigned max_num)
{
limit = max_num;
sievelen = limit / DWORD_BITS + 1;
bookmark = 0;

sieve = (unsigned char*) malloc(sievelen);
for (unsigned i = 0; i < sievelen; i++) {sieve[i] = 0;}

firstPass();
}


inline bool PrimeGen::getBit(const unsigned index)
{
return sieve[index/DWORD_BITS] & flag(index%DWORD_BITS);
}


inline void PrimeGen::onBit(const unsigned index)
{
sieve[index/DWORD_BITS] |= flag(index%DWORD_BITS);
}


inline void PrimeGen::offBit(const unsigned index)
{
sieve[index/DWORD_BITS] &= ~flag(index%DWORD_BITS);
}


inline void PrimeGen::switchBit(const unsigned index)
{
sieve[index/DWORD_BITS] ^= flag(index%DWORD_BITS);
}


void PrimeGen::firstPass()
{
unsigned nmod,n,x,y,xroof, yroof;

//n = 4x^2 + y^2
xroof = (unsigned) sqrt(((double)(limit - 1)) / 4);
for(x = 1; x <= xroof; x++){
yroof = (unsigned) sqrt((double)(limit - 4 * x * x));
for(y = 1; y <= yroof; y++){
n = (4 * x * x) + (y * y);
nmod = n % 12;
if (nmod == 1 || nmod == 5){
switchBit(n);
}
}
}

xroof = (unsigned) sqrt(((double)(limit - 1)) / 3);
for(x = 1; x <= xroof; x++){
yroof = (unsigned) sqrt((double)(limit - 3 * x * x));
for(y = 1; y <= yroof; y++){
n = (3 * x * x) + (y * y);
nmod = n % 12;
if (nmod == 7){
switchBit(n);
}
}
}

xroof = (unsigned) sqrt(((double)(limit + 1)) / 3);
for(x = 1; x <= xroof; x++){
yroof = (unsigned) sqrt((double)(3 * x * x - 1));
for(y = 1; y <= yroof; y++){
n = (3 * x * x) - (y * y);
nmod = n % 12;
if (nmod == 11){
switchBit(n);
}
}
}
}


unsigned PrimeGen::next()
{
while (bookmark <= limit)
{
bookmark++;

if (getBit(bookmark))
{
unsigned out = bookmark;

for(unsigned num = bookmark * 2; num <= limit; num += bookmark)
{
offBit(num);
}

return out;
}
}

return 0;
}


inline void PrimeGen::printBoard()
{
for(unsigned i = 0; i < sievelen; i++)
{
if (i % 4 == 0)
cout << endl;

printBinary(sieve[i]);
cout << " ";
}
}


inline unsigned char flag(const unsigned char bit_index)
{
return ((unsigned char) 128) >> bit_index;
}


inline void printBinary(unsigned char byte)
{
unsigned int i = 1 << (sizeof(byte) * 8 - 1);

while (i > 0) {
if (byte & i)
cout << "1";
else
cout << "0";
i >>= 1;
}
}

我已尽最大努力对其进行清理并使其可读。我不是专业程序员,所以请手下留情。

这是我得到的输出,当我初始化一个名为 pgen 的 PrimeGen 对象时,使用 pgen.printBoard() 打印它的初始位板(请注意在 next() 迭代之前缺少 23 和 59),然后迭代 next () 并打印所有返回的素数:

00000101 00010100 01010000 01000101
00000100 01010001 00000100 00000100
00010001 01000001 00010000 01000000
01000101 00010100 01000000 00000001

5
7
11
13
17
19
29
31
37
41
43
47
53
61
67
71
73
79
83
89
97
101
103
107
109
113
127

DONE

Process returned 0 (0x0) execution time : 0.064 s
Press any key to continue.

最佳答案

Eureka !!!

不出所料,这对我来说是一个愚蠢的错误。

3x^2 - y^2 方程有一个我忽略的小警告:x > y。考虑到这一点,我切换 23 和 59 的次数过多,导致它们失败。

感谢大家的帮助。救了我的培根。

关于C++ Sieve of Atkin 忽略了一些质数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2145939/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com