-
Notifications
You must be signed in to change notification settings - Fork 1
/
Grafos - Matriz adjacencia.c
74 lines (60 loc) · 1.42 KB
/
Grafos - Matriz adjacencia.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
#include "Grafos - Matriz adjacencia.h"
#include <stdio.h>
#include <stdlib.h>
/* Descricao das funcoes utilizadas */
void inicializaGrafo(tgrafo *grafo, int num_vertices)
{
int i, j;
grafo->num_vertices = num_vertices;
for (int i = 0; i < grafo->num_vertices; i++)
for (int j = 0; j < grafo->num_vertices; j++)
grafo->mat[i][j] = 0;
}
void insere_aresta(tvertice v, tvertice u, tpeso peso, tgrafo *grafo)
{
grafo->mat[v][u] = peso;
}
tpeso existe_aresta(tvertice v, tvertice u, tgrafo *grafo)
{
return grafo->mat[v][u];
}
void retira_aresta(tvertice u, tvertice v, tgrafo *grafo)
{
if(grafo->mat[v][u] == 0)
{
printf("Erro: Aresta inexistente!\n");
return;
}
else
grafo->mat[v][u] = 0;
}
int existe_adjacentes(tvertice v, tgrafo *grafo)
{
tvertice aux;
for(aux = 0; aux < grafo->num_vertices; aux++)
{
if(grafo->mat[v][aux] != 0)
return 1;
}
return 0;
}
tapontador primeiro_adjacente(tvertice v, tgrafo *grafo)
{
tapontador aux;
for (aux = 0; aux < grafo->num_vertices; aux++)
if(grafo->mat[v][aux] != 0)
return aux;
return 0;
}
tapontador prox_adjacente(tvertice v, tapontador aux, tgrafo *grafo)
{
for(; aux < grafo->num_vertices; aux++)
if(grafo->mat[v][aux] != 0)
return aux;
return 0;
}
void recupera_adjacente(tvertice v, tapontador p, tvertice *u, tpeso *peso, tgrafo *grafo)
{
*u = p;
*peso = grafo->mat[v][p];
}