DFS in C [Program+Algorithm]

In this tutorial, you will learn about Depth First Search in C with the algorithm and program examples.

Most graph problems involve the traversal of a graph. Traversal of a graph means visiting each node and visiting exactly once. There are two types of traversal in graphs i.e. Depth First Search (DFS) and Breadth First Search (BFS).

Also Read: Breadth First Search in C

It is like a tree. Traversal can start from any vertex, say Vi. Vi is visited and then all vertices adjacent to Vi are traversed recursively using DFS. Since a graph can have cycles. We must avoid revisiting a node. To do this, when we visit a vertex V, we mark it visited. A node that has already been marked as visited should not be selected for traversal. Marking of visited vertices can be done with the help of a global array visited[ ]. Array visited[ ] is initialized to false (0).

Depth First Search Algorithm

Depth First Search (DFS) Traversal of a Graph [Algorithm and Program]

The graph shown above is taken as input in both the programs mentioned below.

Depth First Search Program in C [Adjacency Matrix]

C Program to implement DFS traversal on a graph represented using an adjacency matrix

Depth First Search Program in C [Adjacency List]

C Program to implement DFS traversal on a graph represented using an adjacency list

If you found anything incorrect or have doubts regarding the above DFS program in C then comment below.

30 thoughts on “DFS in C [Program+Algorithm]”

  1. void DFS(int i)
    {
    node *p;
    printf("n%d",i);
    p=G[i];
    visited[i]=1;
    while(p!=NULL)
    {
    i=p->vertex;
    if(!visited[i])
    DFS(i);
    p=p->next;
    }
    }
    In this function after while loop is terminated how the backtracking is happen?

  2. i am trying to work with adjacency matrix method in C# but I am unable to use NOT operator with int data type. Can you please elaborate it in C# especially the if condition used in the adjacency matrix's program dfs function

  3. I am trying to compile this program but it shows [Error] 'malloc' was not declared in this scope. any solution plz?

    1. 1.mark all the vertices as not visited.
      2.apply DFS for graph from any vertix.
      3.if any vertix is not visited then return false
      4.reverse the graph and mark all the vertices as not visited
      5.apply DFS for reversed graph with from same vertix as in step 2
      6.if any vertix is not visited then return false
      7.return true

  4. In your “Depth First Search (DFS) Program in C [Adjacency List]” code the loop on line 57 looks wrong. You initialize G[0] to NULL and then begin inserting all the edges before you finish initializing the rest of G[]. Since you use the variable ‘i’ for both loops you win not continue where you left off, which doesn’t matter since you already inserted the edges. The problem would be if you have less edges than nodes, you may actually delete some edges in your adjacency-list.

    1. Are you sure you understand what DFS does? We start and vertex 0, and we travel on the edge to vertex 1. From vertex 1 we follow the left most edge to the last vertex of the branch which is vertex N. Once all edges leading from Vertex N that lead to an undiscovered vertex are marked. We travel back to the previous vertex which is vertex N-1 of the branch. And continue this method until we are back at vertex 0 and we are done when all edges from Vertex 0 are marked as being discovered.

    2. I would suggest reviewing what Depth First Search is actually doing. The output is correct for Depth First Search

    3. I guess it should be for(j=i;j<n;j++)

      DFS(int i)
      {
      int j;
      printf("\n%d",i);
      visited[i]=1;

      for(j=0;j<n;j++)
      if(!visited[j]&&G[i][j]==1)

      1. no ,that’s correct, if we give the the starting index as other than ‘0’ then we have to start from i=0; every time

  5. why do I feel like the resulting traversal is wrong?
    shouldnt it be 01527634 since after visiting 5,(where 5 is adjacent to 1, 2 and 7), then it will push 2 into stack because its still not visited

  6. What if there is character input data instead of an integer.
    here you took an integer so you can do this so by visited[i]=1.
    What is there is Character??

  7. Excellent minimum line code. After many years I have used some C code. I have tried it for 9 nodes entered 81 elements and at last all get disappeared. I have tried this two times and get realized that getch() is remaining. After inserting this line I could see the output. Then I have converted it to VB.net for my use. I am sure it will be very great help for me. Thanks a lot.

  8. why the path is different in two cases.in adjancency matrix there is one path and in adjancey list there is another

  9. why is that if i give the edges in different order( still the same edges) i get a different path / result every time?

Leave a Comment

Your email address will not be published. Required fields are marked *