Skip to content
Related Articles
Open in App
Not now

Related Articles

Top 10 Interview Questions on Depth First Search (DFS)

Improve Article
Save Article
  • Difficulty Level : Medium
  • Last Updated : 20 Nov, 2020
Improve Article
Save Article

Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures. One starts at the root (selecting some arbitrary node as the root in the case of a graph) and explores as far as possible along each branch before backtracking. Here are some important DFS problems asked in Technical Interviews: 
 

  1. Find number of islands
  2. Transitive closure of a graph using DFS
  3. Application of DFS
  4. Detect cycle in an undirected graph
  5. Longest path between any pair of vertices
  6. Find a mother vertex in a graph
  7. Iterative Depth first traversal
  8. Print all path from a given source to a destination
  9. Stepping Number
  10. Maximum product of two non- intersecting paths in a tree

All articles on Depth First Search 

This article is contributed by Ayushmaan Bansal. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks. 

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
 

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!