forked from kelvins/algorithms-and-data-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConnectedComponents.c
68 lines (60 loc) · 1.76 KB
/
ConnectedComponents.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
/*
*
* Grafos - Algoritmo para calcular o número de componentes conexos em um determinado Grafo
*
* GRAFO
* (0) (1)-------------(4)---------------(5)
* | | | |
* | | | |
* | | | |
* (2) (3)--------------- |
* | |
* -----------------------------------
*
*
* Matriz de Adjacência
* 0 1 2 3 4 5
* 0 0 - 1 - - -
* 1 - 0 - 1 1 -
* 2 1 - 0 - - -
* 3 - 1 - 0 1 1
* 4 - 1 - 1 0 1
* 5 - - - 1 1 0
*
*
* 6 Vértices
* 8 Arestas
*/
#include <stdio.h>
#define VERTICES 6
#define INF -1
bool visitados[VERTICES];
int componentes = 0;
int matriz[VERTICES][VERTICES] = { { 0, INF, 1, INF, INF, INF },
{ INF, 0, INF, 1, 1, INF },
{ 1, INF, 0, INF, INF, INF },
{ INF, 1, INF, 0, 1, 1 },
{ INF, 1, INF, 1, 0, 1 },
{ INF, INF, INF, 1, 1, 0 } };
// Método recursivo que encontra os componentes conexos a partir de uma matriz de adjacências
void calculaComponentesConexos(int atual){
for (int i = 0; i < VERTICES; i++){
if( visitados[i] == false && matriz[atual][i] == 1 ){
visitados[i] = true;
componentes++;
printf("(%d)-", i);
calculaComponentesConexos(i);
}
}
}
int main(){
for (int i = 0; i < VERTICES; i++)
visitados[i] = false;
for (int i = 0; i < VERTICES; i++)
if( visitados[i] == false ){
componentes = 0;
calculaComponentesConexos(i);
printf("\nNumero de componentes conexos iniciando pelo vertice %d: %d\n\n", i, componentes);
}
return 0;
}