-
Notifications
You must be signed in to change notification settings - Fork 1
/
Grafos - Lista adjacencia.h
47 lines (40 loc) · 1.21 KB
/
Grafos - Lista adjacencia.h
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
/* TAD para grafos criados a partir de uma lista de adjacencia. */
/* Defines */
#define MAXNUMVERTICES 50
#define NULO NULL
/* Variaveis */
typedef float tpeso;
typedef int svertice;
//Bloco onde sao alocados o conteudo de cada vertice
typedef struct tvertice
{
int egressos;
int id;
struct taresta *prox;
} tvertice;
//Bloco onde sao alocados o elementos da aresta
typedef struct taresta
{
tpeso peso;
int id;
struct taresta *prox;
} taresta;
typedef taresta* tapontador;
typedef tvertice* tapontador_vertice;
//Bloco do grafo
typedef struct tgrafo
{
tvertice* vet[MAXNUMVERTICES];
int num_vertices;
} tgrafo;
/* Funcoes utilizadas */
void inicializaGrafo(tgrafo *grafo, int num_vertices);
void insere_aresta(tgrafo *grafo, svertice v,svertice u, tpeso peso);
void retira_aresta(tgrafo *grafo, svertice v, svertice u);
int existe_aresta(tgrafo *grafo, svertice v,svertice u);
void libera_grafo(tgrafo *grafo);
int existe_adj(tgrafo *grafo, svertice v);
tapontador primeiro_adj(tgrafo *grafo, svertice v);
tapontador prox_adj(tgrafo *grafo, svertice v);
void insere_egressos(tgrafo *grafo,svertice v,int egressos);
void printaGrafo(tgrafo *grafo,int num_vertices);