-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwarshall.c
71 lines (60 loc) · 1.42 KB
/
warshall.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
#include <stdio.h>
#include <stdlib.h>
#define n 6
void print(int m[][n]){
int i,j;
printf(" "); // 1
for(i = 0; i < n; i++) // 1 + n(2)
printf("v%d ",i); // n
printf("\n"); // 1
for(i = 0; i < n; i++){ // 1 + n(2)
printf("v%d ",i); // n
for(j = 0; j < n; j++){ // n + n²(2)
printf("%d ",m[i][j]); // n²
}
printf("\n"); // n
}
printf("\n"); // 1
// 1 + 1 + n(2) + n + 1 + 1 + n(2) + n + n + n²(2) + n² + n + 1
// = 5 + 8n + 3n²
}
int main(){
int m[][n] = {{0,1,1,0,0,0},
{1,0,0,1,0,0},
{0,1,0,0,0,0},//{0,0,0,0,0,0},
{0,1,2,0,0,1},//{0,1,2,1,0,1},
{0,0,1,1,0,1},
{0,0,0,1,0,0}}, p[n][n],i,j,k;
for(i = 0; i < n; i++){ // 1 + n(2)
for(j = 0; j < n; j++) // n + n²(2)
m[i][j] > 0 ? (p[i][j] = 1) : (p[i][j] ^= p[i][j]); // n²(2)
}
// = 1 + 3n + 4n²
for(k = 0; k < n; k++){ // 1 + n(2)
for(i = 0; i < n; i++){ // n + n²(2)
for(j = 0; j < n; j++){ // n² + n³(2)
if(p[i][j] == 0) // n³
p[i][j] = p[i][k] * p[k][j]; // n³
}
}
}
// = 1 + 3n + 3n² + 4n³
print(m); // = 5 + 8n + 3n²
print(p); // = 5 + 8n + 3n²
return 0;
}
/*
Complexidade: O(n³)
Primeiro loop (definindo valores da matriz p):
1 + 3n + 4n²
Segundo loop (algoritmo de warshall):
1 + 3n + 3n² + 4n³
Exibição na tela:
2 * (5 + 8n + 3n²)
Soma da complexidade:
12 + 22n + 13n² + 4n³
Ignorar termos de ordem inferior relativos ao maior termo:
4n³
Ignorar constantes:
O(n³)
*/