Graph traversal algorithms are used to perform various operations on a graph data structure. In this article, we will use the breadth-first graph traversal algorithm to detect cycle in an undirected graph.
What is a cycle in a graph?
We say that a cycle is present in a graph if we can reach the same place after starting from a vertex and traversing one or more edges only once. In other words,if we can start from a vertex and reach the same vertex after traversing one or more edges only once, then we say that a cycle is present in the graph.
For example, consider the following graph.
In this graph, we can start from vertex A and reach the same vertex after traversing through the edges E2->E5->E4. So, we will say that there is a cycle present in the graph.
We can also start from vertex B and follow the path E2-E4-E5 to reach vertex B. Hence, we will again find that there is a cycle present in the graph. Here, you can see that we have considered each edge only once while traversing a path.
On the contrary, consider the following graph.
Here, we cannot reach the same vertex after starting from a vertex without repeating any edge. So, we will say that the graph doesn’t contain any cycle.
Algorithm to detect cycle in an undirected graph
As we now have an overview of what a cycle is, Let us formulate an algorithm to detect a cycle in an undirected graph. For this, we will start from the source vertex and will traverse the graph using the breadth-first search algorithm. During traversal, if we find a vertex that has already been traversed, we will say that there is a cycle present in the graph.
The algorithm to detect cycles in an undirected graph can be formulated as follows.
- Create an empty Queue Q.
- Create a list visited_vertices to keep track of visited vertices.
- Insert source vertex into Q and visited_vertices.
- If Q is empty, go to 10. Else goto 5.
- Take out a vertex v from Q.
- If any neighbor of v is already present in the visited_vertices, goto 7. Else, goto 8.
- Print that cycle is present in the graph. Goto 11.
- Insert the unvisited neighbors to Q and visited_vertices.
- Go to 5.
- Print that there is no cycle in the graph.
- Stop.
Python Program to detect cycle in an undirected graph
As we have formulated the algorithm to detect cycle in an undirected graph, let us implement it in python and execute it for the graphs given in the images in the previous sections.
Output:
Conclusion
In this article, we have discussed the algorithm to detect cycle in an undirected graph. Here, we have used the breadth-first graph traversal algorithm. To read about binary tree traversal algorithms, you can read the Inorder tree traversal algorithm or level order tree traversal algorithm.
Recommended Python Training
Course: Python 3 For Beginners
Over 15 hours of video content with guided instruction for beginners. Learn how to create real world applications and master the basics.