-
Notifications
You must be signed in to change notification settings - Fork 1
/
Grafos - Busca.c
147 lines (126 loc) · 3.14 KB
/
Grafos - Busca.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/* Descricao das funcoes declaradas me Grafos - busca.h */
#include <stdio.h>
#include <stdlib.h>
#include "Grafos - Busca.h"
//#include "Grafos - Matriz adjacencia.h"
#define INF 2500000
/*
void busca_profundidade(tgrafo *grafo)
{
tvertice v;
int cor[MAXNUMVERTICES];
for(v = 0; v < grafo->num_vertices; v++)
cor[v] = BRANCO;
for(v = 0; v < grafo->num_vertices; v++)
if(cor[v] == BRANCO)
visita_dfs(v, cor, grafo);
}
void visita_dfs(tvertice v, int cor[], tgrafo *grafo)
{
tvertice w;
tapontador p;
tpeso peso;
cor[v] = CINZA;
p = primeiro_adj(grafo, v);
while(p != NULO) {
recupera_adj(v, p, &w, &peso, grafo);
if(cor[w] == BRANCO)
visita_dfs(w, cor, grafo);
p = prox_adj(grafo, v);
}
cor[v] = PRETO;
}
void busca_largura(tgrafo *grafo)
{
tvertice v;
int cor[MAXNUMVERTICES];
for(v = 0; v < grafo->num_vertices; v++)
cor[v] = BRANCO;
for(v = 0; v < grafo->num_vertices; v++)
if(cor[v] == BRANCO)
visita_bfs(v, cor, grafo);
}
void visita_bfs(tvertice v, int cor[], tgrafo *grafo)
{
tvertice w;
tapontador p;
tpeso peso;
/*Falta o TAD de fila para continuar
}
void dijkstra(struct tgrafo *grafo, tvertice v){
int V = grafo->num_vertices;
int dist[V];
int i;
for(i = 0; i < V; i++){
dist[i] = INF;
}
}
*/
int Floydinho(tgrafo *grafo){
int V = grafo->num_vertices;
int dist[V][V];
int i,j, k;
/* Preenche a matriz com infinito*/
for(i = 0; i < V; i++){
for(j = 0; j < V; j++){
dist[i][j] = INF;
}
}
/* Preenche a diagonal principal com 0's*/
for(i = 0; i < V; i++){
for(j = 0; j < V; j++){
if(i == j){
dist[i][j] = 0;
}
}
}
tapontador p;
/*Coloca os pesos iniciais na matriz*/
for(i = 0; i < V; i++){
p = grafo->vet[i];
while(p != NULL){
if(i != p->id && p->peso != INF){
dist[i][p->id] = p->peso;
}
p = p->prox;
}
}
/*Atualiza os menores caminhos*/
for(i = 0; i < V; i++){
for(j = 0; j < V; j++){
for(k = 0; k < V; k++){
if(dist[j][i] + dist[i][k] < dist[j][k])
dist[j][k] = dist[j][i] + dist[i][k];
}
}
}
/* Cria um vetor de excentricidades*/
int exc[V];
/*Encontra o custo máximo de cada coluna da matriz*/
int maior = 0;
for(i = 0; i < V; i++){
for(j = 0; j < V; j++){
if(dist[j][i] != INF && maior < dist[j][i])
maior = dist[j][i];
}
exc[i] = maior;
maior = 0;
}
tapontador_vertice v;
for(i = 0; i < V; i++){
for(j = 0; j < V; j++){
v = grafo->vet[i];
dist[i][j] = dist[i][j]*v->egressos;
}
}
maior = exc[0];
int verticecentral = 0;
/*Escolhe o vértice central */
for(i = 1; i < V; i++){
if(exc[i] < maior){
maior = exc[i];
verticecentral = i;
}
}
return verticecentral;
}