DFS Algorithm For Graph
DFS Algorithm For Graph
DFS algorithm
Traversal means visiting all the nodes of a graph. Depth rst traversal or Depth rst Search
is a recursive algorithm for searching all the vertices of a graph or tree data structure. In
this article, you will learn with the help of examples the DFS algorithm, DFS pseudocode
and the code of the depth rst search algorithm with implementation in C++, C, Java and
Python programs.
DFS algorithm
A standard DFS implementation puts each vertex of the graph into one of two categories:
1. Visited
2. Not Visited
The purpose of the algorithm is to mark each vertex as visited while avoiding cycles.
DFS example
Let's see how the Depth First Search algorithm works with an example. We use an
undirected graph with 5 vertices.
By using Programiz, you agree to use cookies as stated in our Privacy policy Continue
https://www.programiz.com/dsa/graph-dfs 1/9
11/26/2018 DFS algorithm for graph (With pseudocode, example and code in C, C++, Java, Python)
We start from vertex 0, the DFS algorithm starts by putting it in the Visited list and putting
all its adjacent vertices in the stack.
Next, we visit the element at the top of stack i.e. 1 and go to its adjacent nodes. Since 0
has already been visited, we visit 2 instead.
By using Programiz, you agree to use cookies as stated in our Privacy policy Continue
https://www.programiz.com/dsa/graph-dfs 2/9
11/26/2018 DFS algorithm for graph (With pseudocode, example and code in C, C++, Java, Python)
Vertex 2 has an unvisited adjacent vertex in 4, so we add that to the top of the stack and
visit it.
After we visit the last element 3, it doesn't have any unvisited adjacent nodes, so we have
completed the Depth First Traversal of the graph.
By using Programiz, you agree to use cookies as stated in our Privacy policy Continue
https://www.programiz.com/dsa/graph-dfs 3/9
11/26/2018 DFS algorithm for graph (With pseudocode, example and code in C, C++, Java, Python)
DFS(G, u)
u.visited = true
for each v ∈ G.Adj[u]
if v.visited == false
DFS(G,v)
init() {
For each u ∈ G
u.visited = false
For each u ∈ G
DFS(G, u)
}
DFS code
The code for the Depth First Search Algorithm with an example is shown below. The code
has been simpli ed so that we can focus on the algorithm rather than other details.
DFS in C
#include <stdio.h>
#include <stdlib.h>
struct node
{
int vertex;
struct node* next;
};
struct Graph
{
int numVertices;
int* visited;
struct node** adjLists; // we need int** to store a two dimensional array.
};
https://www.programiz.com/dsa/graph-dfs 4/9