Given an undirected graph what is the best algorithm to detect if it contains a cycle or not?
A breadth first or depth first search while keeping track of visited nodes is one method, but it's O(n^2). Is there anything faster?
|
|
Given an undirected graph what is the best algorithm to detect if it contains a cycle or not? A breadth first or depth first search while keeping track of visited nodes is one method, but it's O(n^2). Is there anything faster?
|
||
|
|
|
|
The BFS and DFS algorithm for given graph G(V,E) has time complexity of O(|V|+|E|). So as you can see it's linear dependency of input. You can perform some heuristics in case you have very specialized graph, but in general it's not so bad to use DFS for that. You can check for some information here. Anyway you have to traverse the whole graph. |
||
|
|
|
Testing for the presence of a cycle in a graph G(V,E) using Depth First Search is O(|V|,|E|) if the graph is represented using an adjacency list. It is necessary to traverse the entire graph to show there are no cycles. If you are simply interested in the presence/absence of a cycle, you can obviously finish at the point a cycle is discovered. |
||
|
|
|
|
Here's your
The ... can be performed with DFS. If you have Hope you like this answer, though a bit late! |
||
|