-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGet_Path_bfs.cpp
More file actions
92 lines (88 loc) · 1.78 KB
/
Copy pathGet_Path_bfs.cpp
File metadata and controls
92 lines (88 loc) · 1.78 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
#include<bits/stdc++.h>
#include<vector>
#include<queue>
#include<unordered_map>
using namespace std;
vector<int>* get_path(int **edges,int n,int sv,int ev,bool *visited){
queue<int>bfsQ;
bfsQ.push(sv);
unordered_map<int,int>parent;
visited[sv]=true;
bool done=false;
while(!bfsQ.empty() && !done){
int front=bfsQ.front();
bfsQ.pop();
for(int i=0;i<n;i++){
if(edges[front][i]==1 && !visited[i]){
parent[i]=front;
bfsQ.push(i);
visited[i]=true;
if(i==ev){
done=true;
break;
}
}
}
}
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,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;
}
bool *visited=new bool[n];
for(int i=0;i<n;i++){
visited[i]=false;
}
int sv,ev;
cin>>sv>>ev;
vector<int>*output=get_path(edges,n,sv,ev,visited);
if(output!=NULL){
for(int i=0;i<output->size();i++){
cout<<output->at(i)<<" ";
}
}
else{
cout<<"PATH NOT FOUND"<<endl;
}
delete []visited;
for(int i=0;i<n;i++){
delete []edges[i];
}
delete []edges;
delete output;
}
/*INPUT
4 4
0 1
0 3
1 2
2 3
1 3
OUTPUT
3 0 1
*/