我将有多个2d int数组。
int[5][5] A;
int[5][5] B;
int[5][5] C;
但是我需要多少取决于运行时决定的参数。如何创建动态数量的2D数组并对其进行管理?
发布于 2014-03-29 16:27:57
在C中,您可以使用可变长度数组(VLA)。因此,您可以声明一个三维数组,其左维将指定二维数组的数量。
例如
#include <stdlib.h>
int main( int argc, char * argv[] )
{
// some check that the command line parameter was specified
int a[atoi( argv[1] )][5][5];
}
发布于 2014-03-29 16:24:14
您可以使用:
int* myArr = malloc(x_dim*y_dim*sizeof(int)); // malloc guarantees contiguous memory allocation
https://stackoverflow.com/questions/22738702
复制相似问题