-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
51 lines (38 loc) · 1.23 KB
/
main.cpp
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
// main.cpp
//integrantes
//David Fernando Perez Medina
//Luisa Fernanda Quintero Ramírez
//Lara Salcedo Franco
#include "grafomatri.h"
#include <iostream>
#include <unistd.h>
int main() {
// Crear un grafo con 8 nodos
GrafoMatriz graph(8);
// Matriz de adyacencia
int adjacencyMatrix[8][8] = {
{0, 8, 5, 9, 0, 0, 0, 0},
{0, 0, 0, 0, 9, 0, 0, 0},
{0, 3, 0, 0, 0, 4, 0, 0},
{0, 0, 6, 0, 0, 0, 2, 0},
{0, 0, 0, 0, 0, 3, 0, 8},
{0, 0, 0, 0, 0, 0, 0, 5},
{0, 0, 0, 0, 0, 2, 0, 9},
{0, 0, 0, 0, 0, 0, 0, 0}
};
// Copiar los valores de la matriz de adyacencia al grafo
for (int i = 0; i < 8; i++) {
for (int j = 0; j < 8; j++) {
graph.agregarArista(i, j, adjacencyMatrix[i][j]);
}
}
// Imprimir el grafo inicial
std::cout << "Grafo inicial:" << std::endl;
graph.imprimirGrafo();
std::cout << std::endl;
// Ejecutar el algoritmo de Ford-Fulkerson y mostrar paso a paso
std::cout << "Algoritmo de Ford-Fulkerson:" << std::endl<< std::endl;
graph.fordFulkerson(0, 7);
std::cout<<std::endl<<"Fin del programa :)"<<std::endl<<std::endl;
return 0;
}