File tree 2 files changed +9
-10
lines changed
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 3
3
4
4
// How to simply allocate 2D array on runtime (in heap)?
5
5
6
- int * * allocate2D (int rows , int cols ){
6
+ int * * allocate2D (int rows , int cols ) {
7
7
// allocate memory for rows
8
8
int * * array2D = array2D = malloc (sizeof (int * ) * rows );
9
9
@@ -15,16 +15,16 @@ int** allocate2D(int rows, int cols){
15
15
return array2D ;
16
16
}
17
17
18
- void free2D (int * * array2D , int rows ){
18
+ void free2D (int * * array2D , int rows ) {
19
19
int i ;
20
- for ( i = 0 ; i < rows ; i ++ ){
20
+ for ( i = 0 ; i < rows ; i ++ ) {
21
21
free (array2D [i ]);
22
22
}
23
23
free (array2D );
24
24
}
25
25
26
26
int main () {
27
- int rows = 9 ;
27
+ int rows = 9 ;
28
28
int cols = 5 ;
29
29
int * * array2D = allocate2D (rows , cols );
30
30
Original file line number Diff line number Diff line change 2
2
#include <stdlib.h>
3
3
4
4
// Write a function called malloc2D() which allocates a 2d array.
5
- // Minimize the number of calls to malloc() and make sure te memory is accessible
6
- // by the notation array[i][j]
7
- // Try allocate this as a contiguous block of memory, that space can be released
8
- // by a single free() call.
5
+ // Minimize the number of calls to malloc() and make sure te memory is
6
+ // accessible by the notation array[i][j] Try allocate this as a contiguous
7
+ // block of memory, that space can be released by a single free() call.
9
8
10
9
int * * allocate2D (int rows , int cols ) {
11
10
size_t overhead = sizeof (int * ) * rows ;
12
11
void * * array = malloc (overhead + sizeof (int ) * rows * cols );
13
- int i = 0 ;
14
- for (; i < rows ; i ++ ) {
12
+ int i ;
13
+ for (i = 0 ; i < rows ; i ++ ) {
15
14
array [i ] = array + overhead + i * cols ;
16
15
}
17
16
return (int * * )array ;
You can’t perform that action at this time.
0 commit comments