我正在研究一个通过引用内部化和扩展2D数组的函数。基本上,当我调用此函数时,我希望将行增加1并每次创建列的大小。
(编辑:为澄清)
2D array **foo = NULL
call func_v2()
if **foo = NULL
then foo = [0]
then foo = [0][size]
then foo = [1]
call func_v2()
**foo != NULL
foo[1][size]
foo[2]
call func_v2()
**foo != NULL
foo[2][size]
foo[3]
//And so on and so on
这个想法是,每次我调用此函数时,我都会设置下一行,以便在再次调用该函数时可以为列分配空间。
我的问题是,每当我在函数中调用realloc时,它就会崩溃。我不确定为什么realloc在这里不起作用。我如何才能获得重新分配的工作,并且有人可以解释为什么它不起作用,谢谢。
void func_v2(int ***arr, int size, int *len){
/*set up first row space if NULL*/
if (*arr == NULL) {
*arr = malloc((*len) *sizeof(int*));
}
/*create columns in the array*/
(*arr)[(*len) - 1] = malloc(size * sizeof(int *));
/*debug test set with values*/
for (int j = 0; j < size; j++) {
(*arr)[*len - 1][j] = (*len);
}
/*increment length of row*/
++(*len);
/*extend row size*/
*arr = realloc(*arr, ((*len)) * sizeof(int*)); //WHY DOES THIS NOT WORK?
}
int main(void) {
int **foo = NULL;
int size = 5;
int len = 1;
func_v2(&foo,size,&len);
for (int i = 0; i < len-1; i++) {
for (int j = 0; j < size; j++) {
printf("%d ", foo[i][j]);
}
printf("\n");
}
return 0;
}