-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShortestPathUsingBFSGraph
More file actions
80 lines (76 loc) · 1.55 KB
/
Copy pathShortestPathUsingBFSGraph
File metadata and controls
80 lines (76 loc) · 1.55 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
#include<bits/stdc++.h>
using namespace std;
class Graph{
int V;
list <int>*l;
public:
Graph(int v){
V=v;
l=new list<int> [V];
}
void addEdge(int i,int j,bool undi=true){
l[i].push_back(j);
if(undi){
l[j].push_back(i);
}
}
void printall(){
for(int i=0;i<V;i++){
cout<<i<<"-->";
for(auto nbr:l[i]){
cout<<nbr<<",";
}
cout<<endl;
}
}
void bfs(int source,int des=-1){
queue<int>q;
bool *visited=new bool[V]{0};
int *dist=new int[V]{0};
int *parent=new int[V];
for(int i=0;i<V;i++){
parent[i]=-1;
}
q.push(source);
visited[source]=true;
parent[source]=source;
dist[source]=0;
while(!q.empty()){
int f=q.front();
cout<<f<<endl;
q.pop();
for(auto nbr:l[f]){
if(!visited[nbr]){
q.push(nbr);
parent[nbr]=f;
dist[nbr]=dist[f]+1;
visited[nbr]=true;
}
}
}
for(int i=0;i<V;i++){
cout<<"Shortest distance :"<<i<<" is "<<dist[i]<<endl;
}
if(des!=-1){
int temp=des;
while(temp!=source){
cout<<temp<<"--";
temp=parent[temp];
}
cout<<source<<endl;
}
}
};
int main(){
Graph g(7);
g.addEdge(0, 1);
g.addEdge(1, 2);
g.addEdge(2, 3);
g.addEdge(3, 5);
g.addEdge(5, 6);
g.addEdge(4, 5);
g.addEdge(0, 4);
g.addEdge(3, 4);
g.bfs(1,6);
return 0;
}