-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathla.hpp
68 lines (63 loc) · 1.87 KB
/
la.hpp
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
#ifndef GRAFOS_LA_HPP
#define GRAFOS_LA_HPP
#include <fstream>
#include <iomanip>
#include <ostream>
#include <sstream>
#include <string>
#include <string_view>
#include <vector>
#include "grafos/lista.hpp"
namespace grafos::la {
// Grafo no ponderado LA
class Grafo {
public:
// Tipo que representa los vertices del grafo.
using vertice = std::size_t;
// Crea un Grafo no ponderado.
explicit Grafo(std::size_t n) : ady(n) {}
// Crea un Grafo no ponderado desde un fichero.
explicit Grafo(std::string_view path);
// Devuelve el numero de vertices del grafo.
std::size_t numVert() const { return ady.size(); }
// Devuelve un lista de los vertices adyacentes.
const Lista<vertice>& adyacentes(vertice v) const { return ady[v]; }
// Modificador de la lista de los vertices adyacentes.
Lista<vertice>& adyacentes(vertice v) { return ady[v]; }
private:
// Vector de la lista de vertices adyaventes
std::vector<Lista<vertice>> ady;
};
Grafo::Grafo(std::string_view path) {
char c;
std::string cad;
vertice v, w;
std::ifstream file(path.data());
unsigned n;
file >> n;
ady = std::vector<Lista<vertice>>(n);
while (file >> v) {
file >> c;
std::getline(file, cad);
std::istringstream ss(cad);
while (ss >> w) ady[v].insertar(w, ady[v].fin());
}
file.close();
}
std::ostream& operator<<(std::ostream& os, const Grafo& g) {
using vertice = Grafo::vertice;
using posicion = typename Lista<vertice>::posicion;
const std::size_t n = g.numVert();
os << n << " vertices" << std::endl;
for (vertice i = 0; i < n; ++i)
if (g.adyacentes(i).primera() != g.adyacentes(i).fin()) {
os << i << ':';
for (posicion p = g.adyacentes(i).primera(); p != g.adyacentes(i).fin();
p = g.adyacentes(i).siguiente(p))
os << ' ' << g.adyacentes(i).elemento(p);
os << std::endl;
}
return os;
}
} // namespace grafos::la
#endif