更新:在评论中回答
将值分配给2d数组时出现一些奇怪的行为。当我在4 x 9数组的4 x 4部分内分配单个值时,它可以正常工作,但是当我进入第5列及以后的位置时,多个值将被更改,而不仅仅是一个。
我已多次修改2D复制数组malloc,但问题仍然存在。我也尝试过memcpy,但是那也不起作用。
int **data = (int **)malloc(4*sizeof(int*));
for(int i = 0; i < 4; i++) {
data[i] = (int *)malloc(4*4*sizeof(int));
}
// data prints
9 8 1 4
2 0 5 4
3 0 3 2
5 9 6 3
// copy of a 4 x 4 2d Array but adding 5 extra columns to it
int **copy = (int **)malloc(4*sizeof(int*));
for(int i = 0; i < 4; i++) {
copy[i] = (int *)malloc(4*9*sizeof(int));
copy[i] = data[i]; // original 2d Array
}
// copy prints
9 8 1 4 0 0 0 0 0
2 0 5 4 0 0 0 0 0
3 0 3 2 0 0 0 0 0
4 9 6 3 0 0 0 0 0
copy[0][4] = 5;
// copy prints again
9 8 1 4 5 0 0 0 0
2 0 5 4 0 0 0 0 0
3 0 3 2 0 0 0 0 0
5 9 6 3 0 0 0 0 0
// [0][4] = 5 good but [3][0] changed from 4 to 5
free(copy);
free(data);
我希望如果我将任何值分配给第5-9列,那么只有那个元素应该更改。