This post is completed by 3 users

  • 2
Add to List
Medium

257. Graph – Depth First Traversal

Objective – Given a graph, do the depth first traversal(DFS).

What is depth-first traversal- Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures. One starts at the root (selecting some arbitrary node as the root in the case of a graph) and explores as far as possible along each branch before backtracking. Source - Wiki

Example:

Approach:

  1. Use Stack.
  2. First add the Starting Node to the Stack.
  3. Pop out an element from Stack and add all of its connected nodes to stack.
  4. Repeat the above two steps until the Stack is empty.
  5. Below is a walk through of the graph above.

Output:

source = 0 is connected to nodes:  2 1
source = 1 is connected to nodes:  3 2
source = 2 is connected to nodes:  3
source = 3 is connected to nodes:  4
source = 4 is connected to nodes:  5 1 0
 
Depth First Traversal: 0 1 3 4 5 2