Skip to content

Commit a63c143

Browse files
committed
Formatter
1 parent 15ef405 commit a63c143

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

Array/01-動態宣告二維陣列.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// How to simply allocate 2D array on runtime (in heap)?
55

6-
int** allocate2D(int rows, int cols){
6+
int** allocate2D(int rows, int cols) {
77
// allocate memory for rows
88
int** array2D = array2D = malloc(sizeof(int*) * rows);
99

@@ -15,16 +15,16 @@ int** allocate2D(int rows, int cols){
1515
return array2D;
1616
}
1717

18-
void free2D(int** array2D, int rows){
18+
void free2D(int** array2D, int rows) {
1919
int i;
20-
for(i=0; i<rows; i++){
20+
for (i = 0; i < rows; i++) {
2121
free(array2D[i]);
2222
}
2323
free(array2D);
2424
}
2525

2626
int main() {
27-
int rows = 9;
27+
int rows = 9;
2828
int cols = 5;
2929
int** array2D = allocate2D(rows, cols);
3030

Array/02-動態宣告連續二維陣列.c

+5-6
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@
22
#include <stdlib.h>
33

44
// 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.
98

109
int** allocate2D(int rows, int cols) {
1110
size_t overhead = sizeof(int*) * rows;
1211
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++) {
1514
array[i] = array + overhead + i * cols;
1615
}
1716
return (int**)array;

0 commit comments

Comments
 (0)