-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGFG_BridgeEdgeInAGraph.cpp
59 lines (52 loc) · 1.27 KB
/
GFG_BridgeEdgeInAGraph.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
/*
https://practice.geeksforgeeks.org/problems/bridge-edge-in-graph/1
Bridge edge in a graph
*/
class Solution
{
vector<bool> vis;
public:
//Function to find if the given edge is a bridge in graph.
int isBridge(int V, vector<int> adj[], int c, int d)
{
vis = vector<bool>(V, false);
//DFS
C=c; D=d;
dfs(c , adj);
return vis[d] == false;
//BFS
adj[c].erase(find(adj[c].begin(), adj[c].end(), d));
adj[d].erase(find(adj[d].begin(), adj[d].end(), c));
queue<int> q;
q.push(c);
vis[c] = true;
while(!q.empty())
{
int e = q.front(); q.pop();
for(auto &w: adj[e])
{
if(vis[w]==false)
{
vis[w] = true;
q.push(w);
if(w==d) return 0;
}
}
}
return vis[d]==false;
}
int C, D;
void dfs(int s, vector<int> adj[])
{
vis[s] = true;
for(auto &w: adj[s])
{
if(vis[w]==false and (w!=D || s!=C))
{
vis[w] = true;
if(w==D) return;
dfs(w, adj);
}
}
}
};