-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatrizes.c
81 lines (68 loc) · 1.75 KB
/
Matrizes.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include <stdio.h>
#include <stdlib.h>
const int rows = 2;
const int cols = 7;
void f1(int m1[rows][cols]){
printf("M1:\n");
for(int row = 0; row < rows; row++){
for(int col = 0; col < cols; col++){
printf("%d\t",m1[row][col]);
}
printf("\n");
}
}
void f2(int ***m2){
printf("\n\nM2:\n");
for(int row = 0; row < rows; row++){
for(int col = 0; col < cols; col++){
printf("%d\t",(*m2)[row][col]);
}
printf("\n");
}
}
void f3(int **m3){
printf("\n\nM3:\n");
for(int row = 0; row < rows; row++){
for(int col = 0; col < cols; col++){
printf("%d\t",m3[row][col]);
}
printf("\n");
}
}
int main(){
// PRIMEIRA FORMA: matriz[linhas][colunas] = {...};
int m1[rows][cols];
for(int row = 0; row < rows; row++){
for(int col = 0; col < cols; col++){
m1[row][col] = 1;
}
}
// SEGUNDA FORMA: **matriz = malloc(linhas * sizeof(tipo*)); ou malloc(sizeof(tipo*[linhas]);
int **m2 = malloc(rows * sizeof(int*));
for(int row = 0; row < rows; row++){
m2[row] = malloc(cols * sizeof(int)); // ou matriz[linha] = malloc(sizeof(int[colunas]));
for(int col = 0; col < cols; col++){
m2[row][col] = 2;
}
}
// TERCEIRA FORMA: *matriz[linhas];
int *m3[rows];
for(int row = 0; row < rows; row++){
m3[row] = malloc(cols * sizeof(int)); // ou matriz[linha] = malloc(sizeof(int[colunas]));
for(int col = 0; col < cols; col++){
m3[row][col] = 3;
}
}
f1(m1);
f2(&m2); // Decidi passar por referência apenas para ilustrar o que aconteceria. Veja.
f3(m3);
// Não se esqueça que após instanciar uma matriz com malloc, é necessário fazer o free() na ordem certa: cada linha primeiro, matriz depois
for(int row = 0; row < rows; row++){
free(m2[row]);
}
free(m2);
for(int row = 0; row < rows; row++){
free(m3[row]);
}
free(m3);
}