如何在C中正确设置,访问和释放多维数组?

时间:2012-09-17 15:37:20

标签: c dynamic multidimensional-array malloc

关于C中的多维数组,我已经看过几十个关于“我的代码有什么问题”的问题。出于某种原因,人们似乎无法理解这里发生的事情,所以我决定回答这个问题。参考其他人:

如何在C中正确设置,访问和释放多维数组?

如果其他人有有用的建议,请随时发布!

5 个答案:

答案 0 :(得分:28)

从C99开始,在C中,即使是动态多维数组也可以通过malloc轻松分配,并通过free释放:

double (*A)[n] = malloc(sizeof(double[n][n]));

for (size_t i = 0; i < n; ++i)
  for (size_t j = 0; j < n; ++j)
      A[i][j] = someinvolvedfunction(i, j);

free(A);

答案 1 :(得分:14)

在C89中至少有四种不同的方法来创建或模拟多维数组。

一个是“分开分配每一行”,迈克在答案中描述。它不是不是多维数组,它只是模仿一个(特别是它模仿了访问元素的语法)。它在每行具有不同大小的情况下非常有用,因此您不是表示矩阵,而是表示具有“粗糙边缘”的东西。

一个是“分配多维数组”。它看起来像这样:

int (*rows)[NUM_ROWS][NUM_COLS] = malloc(sizeof *rows);
...
free(rows);

然后访问元素[i,j]的语法是(*rows)[i][j]。在C89中,必须在编译时知道NUM_COLSNUM_ROWS。这是一个真正的二维数组,rows是指向它的指针。

一个是“分配行数组”。它看起来像这样:

int (*rows)[NUM_COLS] = malloc(sizeof(*rows) * NUM_ROWS);
...
free(rows);

然后访问元素[i,j]的语法是rows[i][j]。在C89中,必须在编译时知道NUM_COLS。这是一个真正的二维数组。

一个是,“分配一个数组并假装”。它看起来像这样:

int *matrix = malloc(sizeof(int) * NUM_COLS * NUM_ROWS);
...
free(matrix);

然后访问元素[i,j]的语法是matrix[NUM_COLS * i + j]。这(当然)不是真正的二维阵列。在实践中,它具有与一个相同的布局。

答案 2 :(得分:7)

静态地说,这很容易理解:

int mtx[3][2] = {{1, 2},
                 {2, 3},
                 {3, 4}};

这里没什么复杂的。 3列,2列;第一栏中的数据:1, 2, 3;第二栏中的数据:2, 3, 4。 我们可以通过相同的构造访问元素:

for(i = 0; i<3; i++){
    for(j = 0; j<2; j++)
        printf("%d ", mtx[i][j]);
    printf("\n");
}
//output
//1 2
//2 3
//3 4

现在让我们按照指针

来看一下

括号是一个非常好的结构,可以帮助简化事情,但是当我们需要在动态环境中工作时它没有帮助,所以我们需要根据指针来考虑这一点。如果我们想要存储整数的“行”,我们需要一个数组:

int row[2] = {1,2};

你知道吗?我们可以像指针一样访问它。

printf("%d, %d\n",*row,*(row+1));   //prints 1, 2
printf("%d, %d\n",row[0],row[1]);   //prints 1, 2

现在如果我们不知道行中的值的数量,如果我们有一个指向int的指针,我们可以使这个数组成为动态长度,并且我们给它一些内存:

int *row = malloc(X * sizeof(int));  //allow for X number of ints
*row = 1;        //row[0] = 1
*(row+1) = 2; //row[1] = 2
…
*(row+(X-1)) = Y; // row[x-1] = Some value y

现在我们有了一个动态的一维数组;一排。但是我们想要很多行,而不仅仅是一行,我们不知道有多少行。这意味着我们需要另一个动态1维数组,该数组的每个元素都将是一个指向行的指针。

//we want enough memory to point to X number of rows
//each value stored there is a pointer to an integer
int ** matrix = malloc(X * sizeof(int *));

//conceptually:
(ptr to ptr to int)     (pointer to int)
   **matrix ------------> *row1 --------> [1][2]
                          *row2 --------> [2][3]
                          *row3 --------> [3][4]

现在剩下要做的就是编写将执行这些动态分配的代码:

int i, j, value = 0;

//allocate memory for the pointers to rows
int ** matrix = malloc(Rows * sizeof(int*));

//each row needs a dynamic number of elements
for(i=0; i<Rows; i++){
    // so we need memory for the number of items in each row… 
    // we could call this number of columns as well
    *(matrix + i) = malloc(X * sizeof(int));

     //While we’re in here, if we have the items we can populate the matrix
    for(j=0; j<X; j++)
        *(*(matrix+i)+j) = value; // if you deference (matrix + i) you get the row
                                  // if you add the column and deference again, you
                                  // get the actual item to store (not a pointer!)
}

现在最重要的事情之一就是确保在完成后释放内存。 malloc()的每个级别应具有相同数量的free()次调用,并且调用应采用FILO顺序(与malloc调用相反):

for(i=0; i<Rows; i++) 
    free(*(matrix + i));
free(matrix);

//set to NULL to clean up, matrix points to allocated memory now so let’s not use it!
matrix = NULL; 

答案 3 :(得分:1)

如果你想使用typedef'd数组,它甚至更简单。

假设您的代码typedef int LabeledAdjMatrix[SIZE][SIZE];

然后您可以使用:

LabeledAdjMatrix *pMatrix = malloc(sizeof(LabeledAdjMatrix));

然后你可以写:

for (i=0; i<SIZE; i++) {
    for (j=0; j<SIZE; j++) (*parr)[i][j] = k++; /* or parr[0][i][j]... */
}

由于pArr是指向矩阵的指针,*的优先级低于[];

这就是为什么模式常见的习惯用法是键入行:

typedef int LabeledAdjRow[SIZE];

然后你可以写:

LabeledAdjRow *pMatrix = malloc(sizeof(LabeledAdjRow) * SIZE);
for (i=0; i<SIZE; i++) {
    for (j=0; j<SIZE; j++) parr[i][j] = k++;
}

你可以直接memcpy

LabeledAdjRow *pOther = malloc(sizeof(LabeledAdjRow) * SIZE);
memcpy(pOther, pMatrix, sizeof(LabeledAdjRow) * SIZE);

答案 4 :(得分:0)

不考虑Jen的答案,如果您想以相同的方式为3D数组分配空间,则可以

int(*A)[n][n] = malloc(sizeof(int[num_of_2D_arrays][n][n]));

for (size_t p = 0; p < num_of_2D_arrays; p++)
  for (size_t i = 0; i < n; i++)
    for (size_t j = 0; j < n; j++)
      A[p][i][j] = p;

for (size_t p = 0; p < num_of_2D_arrays; p++)
    printf("Outter set %lu\n", p);
    for (size_t i = 0; i < n; i++)
      for (size_t j = 0; j < n; j++)
        printf(" %d", A[p][i][j]);
      printf("\n");

free(A);