-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths21_graph_algorithms.hpp
71 lines (64 loc) · 3.56 KB
/
s21_graph_algorithms.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
69
70
71
#ifndef SRC_S21_GRAPH_SLGORITHMS_HPP_
#define SRC_S21_GRAPH_SLGORITHMS_HPP_
#include <ctime>
#include <set>
#include <vector>
#include "queue/s21_queue.hpp"
#include "s21_graph.hpp"
#include "stack/s21_stack.hpp"
struct TsmResult {
std::vector<int> vertices;
double distance;
};
class GraphAlgorithms {
unsigned random_seed_{(unsigned)time(0)};
public:
/*---обход графа в глубину---*/
std::vector<int> DepthFirstSearch(const Graph &graph, const int &startVertex);
/*---обход графа в ширину---*/
std::vector<int> BreadthFirstSearch(const Graph &graph,
const int &startVertex);
/*---возвращает вектор вершин кратчайшего пути---*/
std::vector<int> GetVectorShortestPathBetweenVertices(const Graph &graph,
const int &vertex1,
const int &vertex2);
/*---возвращает значение кратчайшего пути---*/
double GetShortestPathBetweenVertices(const Graph &graph, const int &vertex1,
const int &vertex2);
/*---возвращает матрицу смежности кратчайших путей между всеми вершинами---*/
Matrix<double> GetShortestPathsBetweenAllVertices(const Graph &graph);
/*---возвращает матрицу смежностиминимального остновного дерева---*/
Matrix<double> GetLeastSpanningTree(const Graph &graph);
/*---алгоритмы на решение задачи коммивояжера---*/
TsmResult SolveTravelingSalesmanProblem(const Graph &graph);
TsmResult SolveTsmBrute(const Graph &graph);
TsmResult SolveTsmNearestNeighbour(const Graph &graph);
private:
/*---приватные фунции для обхода графа в глубину---*/
void RebuildUnVisitedVertexStack_(s21::Stack<int> *unVisitedVertex,
const int &vertex);
/*---приватные фунции для поиска кратчайшего пути между двум] вершинами---*/
std::vector<int> InverseVector(const std::vector<int> ¤t);
/*---приватные фунции для поиска минимального остновного дерева---*/
int GetRandomVertex_(std::set<int> *unVisitedVertex);
bool IsHaveVectorEdge_(const std::vector<std::pair<int, int>> &vecEdge,
const std::pair<int, int> &edge);
std::pair<int, int> FindMinimalEdge_(
const std::vector<std::pair<int, int>> &edgeNeighbors,
const Matrix<double> &matrixGraph);
Matrix<double> GenerateMatrixSpanningTree_(
const std::vector<std::pair<int, int>> &vectorSpanningTree,
const Matrix<double> &matrixGraph);
/*---приватные фунции для задачи коммивояжера---*/
static constexpr double kEvaporationCoef = 0.8;
TsmResult GenerateRandomPath(const Matrix<double> &paths, unsigned *seed);
TsmResult GeneratePopularPath(const Matrix<double> &paths, unsigned *seed,
Matrix<double> *phero);
void EvaporatePheromones(Matrix<double> *mx);
void LeavingTrails(const TsmResult &path, Matrix<double> *phero);
TsmResult InsertActualPaths(const TsmResult &data, const Graph &graph);
int Roll(int base, unsigned *seed);
TsmResult RecBruteSearch(int cur, std::set<int> future,
const Matrix<double> &paths);
};
#endif // SRC_S21_GRAPH_SLGORITHMS_HPP_