Data Structures using C Language / Graph Traversal Depth First Traversal using c program

Program
Output
Adjacency list of vertex 0
2 -> 1 -> 
Adjacency list of vertex 1
2 -> 0 -> 
Adjacency list of vertex 2
3 -> 1 -> 0 -> 
Adjacency list of vertex 3
2 -> 
Visited 2 
Visited 3 
Visited 1



Home     Back