Hi, I've just learning the algorithm to find bridges in a graph, it's a modification of an dfs Code
But now I'm facing an problem, how do I check for 'bridges' connecting to 1 pre-determined vertex(example: being a
the vertex I want to check for bridges to it, if the edge n
is removed, there won't be a path to some vertex 'x' to the main
vertex a
).
I've tried to use the simple approach to look for bridges, but it clearly don't work, which'd be the right approach ?
by the way, the problem is this one: Link