This post is completed by 3 users
|
Add to List |
152. Breadth-First Search/Traversal in a Graph
Breadth-First Search ( or Traversal) (BFS) in a Graph is quite similar to Binary Tree. Click here to read about BFS in Binary Tree.
Example:
What is Breadth-First Search:
Breadth-first search (BFS) is an algorithm for traversing or searching tree or graph data structures. It starts at the tree root and explores the neighbor nodes first, before moving to the next level of neighbors. (Reference — Wiki)
Approach:
- For Graph as well we will use the Queue for performing the BFS.
- We will use the boolean[] to keep track of the nodes because, unlike trees during traversal, we might keep moving into the circles by visiting the same nodes repeatedly.
- In our example, we are using an adjacency List for the Graph Representation.
Output: 0 2 1 3 4 5