武汉232公交车路线时间表(23.2: Dynamically Allocating Multidimensional Arrays)
23.2: Dynamically Allocating Multidimensional Arrays
Weve seen that its straightforward to call malloc to
allocate a block of memory which can simulate an array,
but with a size which we get to pick at run-time.
Can we do the same sort of thing to simulate multidimensional arrays?
We can, but well end up using pointers to pointers.If we dont know how many columns the array will have,
well clearly allocate
memory for
each row
(as many columns wide as we like)
by calling malloc,
and each row will therefore be represented by a pointer.
How will we keep track of those pointers?
There are, after all, many of them, one for each row.
So we want to simulate an array of pointers,
but we dont know how many rows there will be, either,
so well have to simulate that array (of pointers) with another pointer,
and this will be a pointer to a pointer.This is best illustrated with an example:
#include <stdlib.h> int **array; array = malloc(nrows * sizeof(int *)); if(array == NULL) { fprintf(stderr, "out of memory\n"); exit or return } for(i = 0; i < nrows; i++) { array[i] = malloc(ncolumns * sizeof(int)); if(array[i] == NULL) { fprintf(stderr, "out of memory\n"); exit or return } }array is a pointer-to-pointer-to-int:
at the first level,
it points to a block of pointers,
one for each row.
That first-level pointer is the first one we allocate;
it has nrows elements,
with each element
big enough to hold
a pointer-to-int,
or
int *.
If we successfully allocate it,
we then fill in
the pointers
(all
nrows of them)
with a pointer (also obtained from malloc)
to ncolumns
number of
ints,
the storage for that row of the array.
If this isnt quite making sense,
a picture should make everything clear:Once weve done this, we can (just as for the one-dimensional case)
use array-like syntax to access our simulated multidimensional array.
If we write array[i][j]were asking for the ith pointer pointed to by array,
and then for the jth int pointed to by that inner pointer.
(This is a pretty nice result:
although some completely different machinery,
involving two levels of pointer dereferencing,
is going on behind the scenes,
the simulated, dynamically-allocated two-dimensional ``array
can still be accessed just as if it were an array of arrays,
i.e. with the same pair of bracketed subscripts.)If a program uses simulated, dynamically allocated
multidimensional arrays,
it becomes possible to write ``heterogeneous
functions which
dont have to know (at compile time)
how big the ``arrays are.
In other words,
one function can operate
on ``arrays of various sizes and shapes.
The function will look something like func2(int **array, int nrows, int ncolumns) { }This function does accept a pointer-to-pointer-to-int,
on the assumption that well only be calling it with simulated,
dynamically allocated multidimensional arrays.
(We must not call this function on
arrays like
the ``true
multidimensional array a2 of the previous sections).
The function also accepts the dimensions of the arrays as
parameters,
so that it will know how many ``rows and
``columns there are,
so that it can iterate over them correctly.
Here is a function which zeros out a pointer-to-pointer,
two-dimensional ``array: void zeroit(int **array, int nrows, int ncolumns) { int i, j; for(i = 0; i < nrows; i++) { for(j = 0; j < ncolumns; j++) array[i][j] = 0; } }Finally, when it comes time to free one of these dynamically
allocated multidimensional ``arrays, we must
remember to free each of the chunks of memory that weve
allocated.
(Just freeing the top-level pointer, array,
wouldnt cut it;
if we did,
all the second-level pointers would be lost but not freed, and would waste
memory.)
Heres what the code might look like: for(i = 0; i < nrows; i++) free(array[i]); free(array);创心域SEO版权声明:以上内容作者已申请原创保护,未经允许不得转载,侵权必究!授权事宜、对本内容有异议或投诉,敬请联系网站管理员,我们将尽快回复您,谢谢合作!