1 c++ arrays segmentation-fault
我正在研究项目欧拉问题14,在那里我需要找到1,000,000以下最长的文件序列.我想出了一个适用于较小数字(例如100)的算法,该算法将每个1到100的整数数据存储到一个数组中,并使用该数组作为参考来加速更高数字的计算.我的代码如下:
#include <iostream>
using namespace std;
long even(long n){ //the even-collatz function
n=n/2;
return n;
}
long odd(long n){ //the odd collatz function
n=3*n+1;
return n;
}
int main(){
long x, c=0, y[1000000]; // x= the number we are finding the collatz number of, c a counter that keeps track of how many steps we've taken in the sequence, y is an array to store the collatz numbers.
for (x=1; x<1000000; x++){ //iterates from x=1 to 1 million
long a = x; //sets a number a equal to the number we are currently trying to find the collatz number of
long b = a;
c=0; //intializes counter at 0
while (a!=0){ //loops infinitely; the only way to exit is through a break.
if (a%2==0){ // detects if the number is even
a=even(a); //applies the even-collatz function if so; sets x=x/2
c=c+1;
if (y[a]!=0){ // checks if the collatz number of x is already discovered
y[b]=c+y[a]; //adds the current number of steps to the collatz number of x and
break; //exits the while loop
}
}
else if (a==1){ //checks if the new x is equal to one and
y[b]=c; //if it is, it writes the current value of c to y[b] and
break; // exits the loop
}
else if (a%2==1){ //same as the "even" block, except for odd numbers
a=odd(a);
c=c+1;
if( y[a]!=0){
y[b]=c+y[a];
break;
}
}
//this is the end of the while loop; we've applied the collatz function as many times as we've needed to to x, and incremented the counter each time
}
}
long z;
for (int n=0;n!=100;n++){
if (y[n+1]>y[n]){
z=y[n+1];
}
}
cout << z << "\n";
}
Run Code Online (Sandbox Code Playgroud)
我遇到的问题是在for循环中我在x = 1818之后得到了段错误.通过调试,我发现segfault发生的速度取决于数组y的大小,所以我假设数组太大了.根据我对segfaults的(基本)理解,我认为我只是访问我"不允许"的内存.有什么方法可以绕过这个,或者我应该开始努力解决这个问题?我在Ubuntu工作室上使用g ++进行编译.
对于系统的默认堆栈大小,此数组可能太大; 最简单的解决方法是将其定义更改为:
std::vector<long> y(1000000);
Run Code Online (Sandbox Code Playgroud)
其他一切都可以保持不变.您可以在循环中稍后使用y.size()而不是幻数1000000.
| 归档时间: |
|
| 查看次数: |
1013 次 |
| 最近记录: |