Depth First Search (DFS) is an application of graph traversal. It traverses the node downwards and uses the stack as a data structure through this it traverses all vertices in downward direction one by one.
A graph contains various edges: they areas follows:
tree edge, forward edge and back edge.
Some properties ofdepth-first search are as follows:
- Using DFT we can verify that the graph is connected or not it means it detects the cycle present in the graph or not.
- We can find out the number of connected components by usingdepth-first search.
It contains various edge they aretree edge, forward edge, back edge, or cross edge all the edges are explain below:
Tree edge: The graph obtained by traversing while using depth first search is called its tree edge.
Forward edge: the edgewhereis descendant and it is not part of depth first search is called forward edge.
Back edge: the edge where is ancestor and it is not part of depth first search is called forward edge.
In the given question, applieddepth-first search where the order of traverse is .