-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.cpp
More file actions
154 lines (132 loc) · 3.58 KB
/
graph.cpp
File metadata and controls
154 lines (132 loc) · 3.58 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#include "graph.h"
#include <iostream>
#include <fstream>
#include "graphGenerator.h"
#include "path.h"
realT Node::getPositionX()const
{
return this->position.first;
}
realT Node::getPositionY()const
{
return this->position.second;
}
void Node::setPositionX(realT x)
{
this->position.first = x;
}
void Node::setPositionY(realT y)
{
this->position.second = y;
}
// Alokuje pamięć na wierzchołki bez wywoływania konstruktorów
Graph::Graph(sizeT n_nodes)
{
nodes = std::vector<Node>();
nodes.reserve(n_nodes);
}
Graph::~Graph()
{
}
// Zwraca referencję na wierzchołki, których nie można przez nią zmieniać
const std::vector<Node>& Graph::getNodes()const
{
return nodes;
}
// Dodaje wierzchołek do grafu
void Graph::addNode(std::pair<realT, realT>p)
{
nodes.push_back(Node(p));
}
// Dodaje skierowaną krawędź do grafu, należy utworzyć dwie takie krawędzie
void Graph::addEdge(const Node & from, const Node & to, realT distance)
{
edges.insert( std::pair<keyT,valueT>(&from, valueT(&to, distance)));
}
// Zwraca valueT sąsiadów danego węzła (iterator na pierwszego sąsiada i iterator za ostatnim sąsiadem)
std::pair<mapT::const_iterator,mapT::const_iterator>
Graph::getNeighbours(const Node* node)const
{
return edges.equal_range( node);
}
// Zwraca wektor sąsiadów tyklo węzły
std::vector<const Node*> Graph::getNeighboursVector(
std::pair<mapT::const_iterator,mapT::const_iterator> neighbours
)const
{
std::vector<const Node*> neighboursVector;
for (auto i = neighbours.first; i != neighbours.second; ++i)
{
neighboursVector.push_back((*i).second.first);
}
return neighboursVector;
}
// Wypisuje graf w konsoli
void Graph::showGraph()const
{
showNodes();
showEdges();
}
// Wypisuje węzły w konsoli
void Graph::showNodes()const
{
for(const auto& i : nodes)
{
std::cout << i.position.first << "," << i.position.second << std::endl;
}
}
// Wypisuje krawędzie na konsoli
void Graph::showEdges()const
{
for(const auto& i : edges)
{
std::cout << i.first->position.first <<","<< i.first->position.second << \
"->" << i.second.first->position.first <<","<< i.second.first->position.first << std::endl;
}
}
// Zapisuje graf do pliku o strukturze:
// liczba_węzłów_w_grafie
// maksymalna_ogległość_w_jakiej_wierzchołki_są_sąsiadami
// [pozycja_x_węzła
// pozycja_y_węzła]
void Graph::saveToFile(std::string filename, realT radiusOfNeighbourhood)const
{
std::ofstream outputFile;
realT currentX, currentY;
sizeT graphSize = nodes.size();
outputFile.open(filename);
outputFile << graphSize << '\n'<<radiusOfNeighbourhood << '\n';
for (size_t i = 0; i < this->nodes.size(); i++)
{
currentX = this->nodes.at(i).getPositionX();
currentY = this->nodes.at(i).getPositionY();
outputFile << currentX << '\n' << currentY << '\n';
}
outputFile.close();
}
// Wczytuje graf z pliku o strukturze:
// liczba_węzłów_w_grafie
// maksymalna_ogległość_w_jakiej_wierzchołki_są_sąsiadami
// [pozycja_x_węzła
// pozycja_y_węzła]
Graph Graph::getGraph(std::string filename)
{
std::vector<Node> nodesFromFile;
std::pair<realT, realT> currentPosition;
std::ifstream inputFile;
realT radiusOfNeighbourhood;
inputFile.open(filename);
sizeT nrNodes;
inputFile >> nrNodes;
Graph graph = Graph(nrNodes);
inputFile >> radiusOfNeighbourhood;
while (! inputFile.eof())
{
inputFile >> currentPosition.first;
inputFile >> currentPosition.second;
graph.addNode(currentPosition);
}
inputFile.close();
graph = GraphGenerator::addEdges(graph, radiusOfNeighbourhood);
return graph;
}