-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraphTransitiveClosure.c
51 lines (41 loc) · 1.72 KB
/
GraphTransitiveClosure.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
//
// Algoritmos e Estruturas de Dados --- 2024/2025
//
// Joaquim Madeira - Dec 2024
//
// GraphTransitiveClosure - Transitive Closure of a directed graph
//
// Student Name : Filipe Viseu
// Student Number : 119192
// Student Name : Duarte Branco
// Student Number : 119253
/*** COMPLETE THE GraphComputeTransitiveClosure FUNCTION ***/
#include "GraphTransitiveClosure.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "Graph.h"
#include "GraphBellmanFordAlg.h"
#include "instrumentation.h"
// Compute the transitive closure of a directed graph
// Return the computed transitive closure as a directed graph
// Use the Bellman-Ford algorithm
Graph* GraphComputeTransitiveClosure(Graph* g) {
assert(g != NULL);
assert(GraphIsDigraph(g));
assert(GraphIsWeighted(g) == 0);
// COMPLETE THE CODE
unsigned int numVertices = GraphGetNumVertices(g); // Obtem o numero de vertices do grafo original
Graph* fechoTransitivo = GraphCreate(numVertices, 1, 0);// Cria o grafo onde o transitivo vai ser guardado
for (unsigned int u = 0; u < numVertices; u++) { // Para cada vertice do grafo original
GraphBellmanFordAlg* bellMan = GraphBellmanFordAlgExecute(g, u); // Executa o algoritmo de Bellman-Ford
for (unsigned int v = 0; v < numVertices; v++) { // Para cada vertice do grafo original
if (u != v && GraphBellmanFordAlgReached(bellMan, v)) { // Se o vertice v é alcançável a partir do vertice u (têm que ser diferentes)
GraphAddEdge(fechoTransitivo, u, v); // Adiciona uma aresta do vertice u para o vertice v no grafo transposto
}
}
GraphBellmanFordAlgDestroy(&bellMan); // Destroi a estrutura do algoritmo de Bellman-Ford
}
return fechoTransitivo;
}
// Complexidade:O(V^2*E)