row = n + 1;
col = n + 1;
//used n+1 and i=-1 to avoid segmentation faults
board = malloc(row*sizeof(char *));
for(i=-1;i<row;i++)
{
board[i] = malloc(col*sizeof(char));
if(board[i] == NULL)
{
printf("Out of memory");
exit(EXIT_FAILURE);
}
}
for(i=-1; i < n+1; ++i)
{
free(board [i]);
}
free(board);
当我尝试在运行时释放这个数组时,我的编译器变得疯狂,请解释一下,谢谢。
数组在
C 中不能有负索引。
在行: for(i = -1; i < row; i++)
我非常确定,这里有一个错误,free
释放了一个最后未malloc()
的额外块,并且您一定遇到段错误。
malloc 返回 void 指针,你必须强制转换它。此外,C 中的最小索引为零。
board = (char**)malloc(row*sizeof(char *));
for(i=0;i<row;i++)
{
board[i] = (char*)malloc(col*sizeof(char));
if(board[i] == NULL)
{
printf("Out of memory");
exit(EXIT_FAILURE);
}
}