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 the downward direction one by one.
Some properties ofdepth-first search are as follows:
- Using DFT we can verify whether 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.
- Here we are using the stack as a data structure.
The time complexity of the list is.
The time complexity of the matrix is.
It contains various edges they aretree edge, forward edge, back edge, or cross edge all the edges are explained below:
Tree edge: The graph obtained by traversing while using depth first search is called its tree edge.
Forward edge: the edgewhere is 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 back edge.