Monday 14 June 2021

Graph traversal -Depth First Search (DFS)

DFS (Depth First Search)

Depth First Search (DFS) algorithm traverses a graph in a depthward motion and uses a stack to remember to get the next vertex to start a search, when a dead end occurs in any iteration.

We use the following steps to implement DFS traversal...

  1. Thumb Rule 1 − Visit the adjacent unvigite vertex. Mark it as visited. Display it. Push it in a stack.
  2. Thumb Rule 2 − If no adjacent vertex is found, pop up a vertex from the stack. (It will pop up all the vertices from the stack, which do not have adjacent vertices.)
  3. Thumb Rule 3 − Repeat Rule 1 and Rule 2 until the stack is empty.


Example:

1. Initially the stack is empty.

2. Mark S as visited and put it onto the stack. Explore any unvisited adjacent node from S. We have three nodes and we can pick any of them. For this example, we shall take the node in an alphabetical order.

3. Mark A as visited and put it onto the stack. Explore any unvisited adjacent node from A. Both S and D are adjacent to A but we are concerned for unvisited nodes only.
 


4. Visit D and mark it as visited and put onto the stack. Here, we have B and C nodes, which are adjacent to D and both are unvisited. However, we shall again choose in an alphabetical order.

5. We choose B, mark it as visited and put onto the stack. Here B does not have any unvisited adjacent node. So, we pop B from the stack.

6. We check the stack top for return to the previous node and check if it has any unvisited nodes. Here, we find D to be on the top of the stack.

7. Only unvisited adjacent node is from D is C now. So we visit C, mark it as visited and put it onto the stack.

As C does not have any unvisited adjacent node so we keep popping the stack until we find a node that has an unvisited adjacent node. In this case, there's none and we keep popping until the stack is empty.

Time Complexity: O(V+E) where V is number of vertices in the graph and E is number of edges in the graph.

Applications of Depth first search algorithm:

  1. Finding a path between two specified nodes, U and V, of an unweighted graph.
  2. Finding a path between two specified nodes, U and V, of a weighted graph.
  3. Finding whether a graph is connected or not.
  4. Computing the spanning tree of a connected graph.

0 comments :

Post a Comment

Note: only a member of this blog may post a comment.

Machine Learning

More

Advertisement

Java Tutorial

More

UGC NET CS TUTORIAL

MFCS
COA
PL-CG
DBMS
OPERATING SYSTEM
SOFTWARE ENG
DSA
TOC-CD
ARTIFICIAL INT

C Programming

More

Python Tutorial

More

Data Structures

More

computer Organization

More
Top