-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph_algorithms.h
More file actions
257 lines (182 loc) · 7.54 KB
/
Copy pathgraph_algorithms.h
File metadata and controls
257 lines (182 loc) · 7.54 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#ifndef GRAPH_ALGORITHMS_H
#define GRAPH_ALGORITHMS_H
#include <vector>
#include <set>
#include <queue>
#include <stack>
#include <map>
#include <utility>
//=========================================================================================
// FUNCTION BFS
//=========================================================================================
template <typename NodeObject,typename GraphObject>
std::map<NodeObject,int> bfs(const NodeObject& root,GraphObject& graphObject){
//============================================================
// BREADTH FIRST SEARCH ALGORITHM
//
// INPUT:
// - root node
// - graphObject: it must contain member functions
// - std::vector<NodeObject> getNeighbours(const NodeObject&) const
// (returning the neighbours of a certain node)
//
// OUTPUT:
// map (node , distance)
//
//============================================================
std::map<NodeObject,int> distances{};
distances.insert(std::make_pair(root,0));
std::queue<std::pair<NodeObject,int>> Q{};
Q.push(std::make_pair(root,0));
std::set<NodeObject> visited{};
visited.insert(root);
while (!Q.empty()){
NodeObject node{Q.front().first};
int cur_dist{Q.front().second};
Q.pop();
distances.insert(std::make_pair(node,cur_dist));
const std::vector<NodeObject> neighbours = graphObject.getNeighbours(node);
for (auto it=neighbours.begin();it!=neighbours.end();++it){
auto resultInsert = visited.insert(*it);
if (resultInsert.second){
Q.push(std::make_pair(*it,cur_dist+1));
}
}
}
return distances;
}
//=========================================================================================
// END OF FUNCTION
//=========================================================================================
//=========================================================================================
// FUNCTION BFS_WITH_TARGET
//=========================================================================================
template <typename NodeObject,typename GraphObject>
std::pair<NodeObject,int> bfs_with_target(const NodeObject& root,GraphObject& graphObject){
//============================================================
// BREADTH FIRST SEARCH ALGORITHM WITH TARGET
//
// INPUT:
// - root node
// - graphObject: it must contain member functions
// - std::vector<NodeObject> getNeighbours(const NodeObject&) const
// (returning the neighbours of a certain node)
// - bool isGoal(const NodeObject&) const
// (returning if a certain node is the goal)
//
// OUTPUT:
// pair (target node , distance)
//
//============================================================
std::queue<std::pair<NodeObject,int>> Q{};
Q.push(std::make_pair(root,0));
std::set<NodeObject> visited{};
visited.insert(root);
while (!Q.empty()){
NodeObject node{Q.front().first};
int cur_dist{Q.front().second};
Q.pop();
if (graphObject.isGoal(node)) return std::make_pair(node,cur_dist);
const std::vector<NodeObject> neighbours = graphObject.getNeighbours(node);
for (auto it=neighbours.begin();it!=neighbours.end();++it){
auto resultInsert = visited.insert(*it);
if (resultInsert.second){
Q.push(std::make_pair(*it,cur_dist+1));
}
}
}
return {};
}
//=========================================================================================
// END OF FUNCTION
//=========================================================================================
//=========================================================================================
// FUNCTION DFS
//=========================================================================================
template <typename NodeObject,typename GraphObject>
void dfs(const NodeObject& root,const GraphObject& graphObject){
//============================================================
// DEPTH FIRST SEARCH ALGORITHM
//
// INPUT:
// - root node
// - graphObject: it must contain member functions
// - std::vector<NodeObject> getNeighbours(const NodeObject&) const
// (returning the neighbours of a certain node)
//
//============================================================
std::stack<NodeObject> S{};
std::set<NodeObject> visited{};
S.push(root);
while (!S.empty()){
NodeObject node{S.top()};
S.pop();
auto resultInsert = visited.insert(node);
if (resultInsert.second){
const std::vector<NodeObject> neighbours = graphObject.getNeighbours(node);
for (auto it=neighbours.begin();it!=neighbours.end();++it){
S.push(*it);
}
}
}
}
//=========================================================================================
// END OF FUNCTION
//=========================================================================================
//=========================================================================================
// FUNCTION DIJKSTRA
//=========================================================================================
template <typename NodeObject,typename GraphObject>
int dijkstra(const NodeObject& source,const NodeObject& target,GraphObject& graphObject){
//============================================================
// DIJKSTRA ALGORITHM
//
// INPUT:
// - source node
// - target node
// - graphObject: it must contain member function
// -std::vector<NodeObject> getNeighbours(const NodeObject&) const;
// (returns the neighbours of the node)
// -int getCost(const NodeObject&,const NodeObject&) const;
// (returns the cost of edge between two nodes)
// -void setPrev(const NodeObject&,const NodeObject&);
// (saves the second node as prev of the first node)
//
//============================================================
std::set<NodeObject> visited{};
std::map<NodeObject,int> hasDistance{};
hasDistance.insert({source,0});
std::priority_queue<std::pair<int,NodeObject>,std::vector<std::pair<int,NodeObject>>,std::greater<std::pair<int,NodeObject>>> prQ{};
prQ.push({0,source});
while (!prQ.empty()){
NodeObject current = prQ.top().second;
int curDist = prQ.top().first;
prQ.pop();
if (visited.find(current)!=visited.end()) continue;
visited.insert(current);
if (current == target){
return curDist;
}
std::vector<NodeObject> neighbours{graphObject.getNeighbours(current)};
for (auto it=neighbours.begin();it!=neighbours.end();++it){
int temp = curDist + graphObject.getCost(current,*it);
auto found = hasDistance.find(*it);
if (found!=hasDistance.end()){
if (temp<found->second){
found->second = temp;
graphObject.setPrev(*it,current);
prQ.push({temp,*it});
}
}else{
prQ.push({temp,*it});
hasDistance.insert({*it,temp});
graphObject.setPrev(*it,current);
}
}
}
return INT_MAX;
}
//=========================================================================================
// END OF FUNCTION
//=========================================================================================
#endif