dubey-harshit / Hacktoberfest-2024

6 stars 68 forks source link

Detect cycle in undirected graph BFS #65

Open Mohitbagul opened 1 month ago

Mohitbagul commented 1 month ago

Given an undirected graph with V vertices labelled from 0 to V-1 and E edges, check whether it contains any cycle or not. Graph is in the form of adjacency list where adj[i] contains all the nodes ith node is having edge with.

NOTE: The adjacency list denotes the edges of the graph where edges[i] stores all other vertices to which ith vertex is connected.

https://www.geeksforgeeks.org/problems/detect-cycle-in-an-undirected-graph/1?utm_source=youtube&utm_medium=collab_striver_ytdescription&utm_campaign=detect-cycle-in-an-undirected-graph

Spiritedswordsman commented 1 month ago

Heyy, can you assign me this?