Ich habe diesen Code, der eine Funktion ist, um die Schritte für eine Perkolationssimulation in einem zweidimensionalen Array durchzuführen.Segmentierungsfehler (Fehler Core Dump)
int step (double ** mat, unsigned n, unsigned m, double a, double b)
{
int i, h, r, c, steps, x, y, o, v; // search for minimum
int min;
FILE *fp;
for(steps=0; steps<2; steps++) // percolation steps
{
for (o=0; o<n; o++)
{
for(v=0; v<m; v++)
{
if (mat[o][v]==-2) {mat[o][v]=-1;}
}
} //trasformo i -2 in -1
min=b; //set the minimum to max of range
for(x=0; x<n; x++) // i search in the matrix the invaded boxes
{
for(y=0; y<m; y++)
{
if (mat[x][y]=-1) //control for the boxes
{
if (mat[x][y-1]<=min && mat[x][y-1]>=0) {min=mat[x][y-1]; r=x; c=y-1;} //look for the minimum adjacent left and right
if (mat[x][y+1]<=min && mat[x][y+1]>=0) {min=mat[x][y+1]; r=x; c=y+1;}
for (i=-1; i<=1; i++) //look for the minimum adjacent up and down
{
for(h=-1; h<=1; h++)
{
if (mat[(x)+i][(y)+h]<=min && mat[(x)+i][(y)+h]>=0)
{
min=mat[(x)+i][(y)+h];
r=(x)+i; c=(y)+h;
}
}
}
}
}
}
mat[r][c]=-2;
x=r; y=c;
}
return 0;
}
Als ich es in meiner main
Funktion erhalte ich Segmentation-fault (core dump created)
. Hast du eine Idee, wo der Fehler ist?
'mat [x] [y-1]' mit 'y = 0 'führt zu undefiniertem Verhalten. Gleiches für 'y = m' und' mat [x] [y + 1] '. Verwenden Sie auch '=' anstelle von '=='. Aktivieren Sie Warnungen in Ihrem Compiler. – Zeta
Nun, das ist ein Spaghetti ... –
BTW 'if (mat [x] [y] = - 1)'? – BLUEPIXY