in Algorithms edited by
1,856 views
1 vote
1 vote

Which of the following is application of depth-first search?

  1. Only topological sort
  2. Only strongly connected components
  3. Both topological sort and strongly connected components
  4. Neither topological sort nor strongly connected components
in Algorithms edited by
by
1.9k views

1 Answer

2 votes
2 votes

3)

DFS can be used to find strongly connected Components and Topological Sort.

Reference : Application of DFS

Answer:

Related questions