SIGSEGV 在 C++ 中具有非常大的数组;环形

发布于 2024-12-23 12:46:50 字数 607 浏览 2 评论 0原文

以下使用 sieve 打印一些素数的代码在在线判断时会生成 SIGSEGV 错误。

int main()
{
long count=1;
int arr[100000000];
printf("2\n");
for(long i=3;i<100000000;i=i+2)
{
    arr[i]=1;
}
for(long i=3;i<100000000;i=i+2)
{
    if(arr[i]==1)
    {
        count++;
        if(count%100==1)printf("%ld\n",i);
        for(long j=2;i*j<100000000;j++)
            arr[i*j]=0;
    }
}
//scanf("%ld",&count);
}

但如果我删除一些语句:

for(long i=3;i<100000000;i=i+2)
{
    if(arr[i]==1)
    {
        count++;
    }
}

按上述修改第二个循环。它没有显示错误。可以帮助解释为什么会发生这种情况以及如何在第一个程序中纠正此问题。

The following code that prints some primes using sieve generates SIGSEGV error on an online judge.

int main()
{
long count=1;
int arr[100000000];
printf("2\n");
for(long i=3;i<100000000;i=i+2)
{
    arr[i]=1;
}
for(long i=3;i<100000000;i=i+2)
{
    if(arr[i]==1)
    {
        count++;
        if(count%100==1)printf("%ld\n",i);
        for(long j=2;i*j<100000000;j++)
            arr[i*j]=0;
    }
}
//scanf("%ld",&count);
}

but if I remove some statements as:

for(long i=3;i<100000000;i=i+2)
{
    if(arr[i]==1)
    {
        count++;
    }
}

modify the second loop as above. it doesn't show the error. Could some help as to why this occurs and how to correct this int the first program.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

GRAY°灰色天空 2024-12-30 12:46:51

这几乎肯定是堆栈溢出,由声明一个巨大的自动数组引起。自动变量通常放置在堆栈上,堆栈的最大大小通常为几兆字节。

您可以使用动态数组(通常分配在堆上)来修复它:

std::vector<int> arr(100000000);

This is almost certainly a stack overflow, caused by declaring an enormous automatic array. Automatic variables are typically placed on the stack, which typically has a maximum size of the order of a few megabytes.

You can fix it by using a dynamic array, typically allocated on the heap:

std::vector<int> arr(100000000);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文