-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph.h
81 lines (61 loc) · 1.4 KB
/
graph.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
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
#ifndef __GRAPH_H
#define __GRAPH_H
/*
* graph.h
*
* Eraldo Luis Rezende Fernandes
*
* Outubro de 2003.
*
* Declaracao de estruturas para representar um grafo.
*
*/
#include <stdio.h>
//////////////////////////////////////////////////////////////////////
//
// tAdjacency
// ==========
//
// Objeto que representa a adjacencia de uma arestra em um
// vertice. Participa de uma lista de adjacencia de outro vertice
//
struct tAdjacency
{
int Weight;
int Vertex;
tAdjacency* Next;
};
typedef void (*FDoForEdge)(int i, int j, int w, void* data);
//////////////////////////////////////////////////////////////////////
//
// tGraph
// ======
//
// Um grafo representado por listas de adjacencia
//
struct tGraph
{
// cria um grafo vazio
tGraph();
// cria um grafo com 'n' vertices
tGraph(int n);
// destrutor
~tGraph();
// cria aresta ligando os vertices 'i' e 'j' com peso 'w'
void CreateEdge(int i, int j, int w);
// imprime grafo (adjacencias)
void Write(FILE* f) const;
// le grafo
void Read(FILE* f);
// chama funcao 'f' para cada aresta do grafo passando os vertices
// adjacentes e 'data'
void DoForEachEdge(FDoForEdge f, void* data) const;
void Free();
// quantidade de vertices
int N;
// quantidade de arestas
int M;
// vetor das listas de adjacencias
tAdjacency** Adjacency;
};
#endif //__GRAPH_H