InterviewSolution
Saved Bookmarks
| 1. |
The Depth First Search traversal of a graph will result into?(a) Linked List(b) Tree(c) Graph with back edges(d) ArrayI have been asked this question in final exam.I want to ask this question from Depth First Search in chapter Graph Search of Data Structures & Algorithms II |
|
Answer» RIGHT CHOICE is (b) Tree Explanation: The DEPTH First Search will make a GRAPH which don’t have back EDGES (a tree) which is known as Depth First Tree. |
|