Open In App
Related Articles

Algorithms | Graph Traversals | Question 1

Improve Article
Improve
Save Article
Save
Like Article
Like

Which of the following algorithms can be used to most efficiently determine the presence of a cycle in a given graph ?

(A)

Depth First Search

(B)

Breadth First Search

(C)

Prim\’s Minimum Spanning Tree Algorithm

(D)

Kruskal\’ Minimum Spanning Tree Algorithm



Answer: (A)

Explanation:

To find cycle in a graph we can use the Depth First Traversal (DFS) technique. It is based on the idea that there is a cycle in a graph only if there is a back edge [i.e., a node points to one of its ancestors] present in the graph.

To detect a back edge, we need to keep track of the nodes visited till now and the nodes that are in the current recursion stack [i.e., the current path that we are visiting]. If during recursion, we reach a node that is already in the recursion stack, there is a cycle present in the graph.

Hence Option (B) is the correct answer.


Quiz of this Question
Please comment below if you find anything wrong in the above post

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads