-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathgetpathbfs.cpp
72 lines (66 loc) · 1.52 KB
/
getpathbfs.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <queue>
#include <iostream>
#include <unordered_map>
using namespace std;
vector<int>* getPath(int** edges, int n, int sv, int ev)
{ queue<int> bfsQ;
bool * visited = new bool[n];
for (int i = 0; i < n; i++) {
visited[i] = false;
}
bfsQ.push(sv);
visited[sv] = true;
bool done = false;
unordered_map<int, int> parent;
while (!bfsQ.empty() && !done) {
int front = bfsQ.front();
bfsQ.pop();
for (int i = 0; i < n; i++) {
if (edges[front][i] && !visited[i]) {
parent[i] = front; bfsQ.push(i);
visited[i] = true; if (i == ev) {
done = true;
break;
}
}
}
}
delete [] visited;
if (!done) {
return NULL;
} else {
vector<int>* output = new vector<int>();
int current = ev;
output->push_back(ev);
while (current != sv) {
current = parent[current];
output->push_back(current);
} return output;
}
}
int main() {
int n;
int e;
cin >> n >> e;
int** edges =
new int*[n];
for (int i = 0; i < n; i++) {
edges[i] = new int[n];
for (int j = 0; j < n; j++) {
edges[i][j] = 0;
}
} for (int i = 0; i < e; i++) {
int f, s;
cin >> f >> s;
edges[f][s] = 1; edges[s][f] = 1; }
int sv, ev;
cin >> sv >> ev;
vector<int>* output = getPath(edges, n, sv, ev);
if (output != NULL) {
for (int i = 0; i < output->size(); i++) {
cout << output->at(i) << " ";
} delete output;
} for (int i = 0; i < n; i++) {
delete [] edges[i];
} delete [] edges;
}