Breadth-first-search (BFS) is an algorithm for traversing or searching tree or graph data structures. It starts at the tree root (or some arbitrary node of a graph, sometimes referred to as a ‘search key’) and explores the neighbor nodes first, before moving to the next level neighbors. BFS was invented in the late 1950s by Edward Forrest Moore, who used it to find the shortest path out of a maze and discovered independently by C. Y. Lee as a wire routing algorithm in 1961.

The processes of BFS algorithm works under these assumptions:

  1. We won’t traverse any node more than once.
  2. Source node or the node that we’re starting from is situated in level 0.
  3. The nodes we can directly reach from source node are level 1 nodes, the nodes we can directly reach from level 1 nodes are level 2 nodes and so on.
  4. The level denotes the distance of the shortest path from the source.

Let’s see an example:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/728c0f99-2640-4fc6-bf6c-6bcee30f345e/Untitled.png

Let’s assume this graph represents connection between multiple cities, where each node denotes a city and an edge between two nodes denote there is a road linking them. We want to go from node 1 to node 10. So node 1 is our source, which is level 0. We mark node 1 as visited. We can go to node 2, node 3 and node 4 from here. So they’ll be level (0+1) = level 1 nodes. Now we’ll mark them as visited and work with them.

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/0e9e0387-ec5b-411e-bcff-31c31be06ccf/Untitled.png

The colored nodes are visited. The nodes that we’re currently working with will be marked with pink. We won’t visit the same node twice. From node 2, node 3 and node 4, we can go to node 6, node 7 and node 8. Let’s mark them as visited. The level of these nodes will be level (1+1) = level 2.

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f79e7eff-17f3-4516-aabc-b204f92064df/Untitled.png

If you haven’t noticed, the level of nodes simply denote the shortest path distance from the source. For example: we’ve found node 8 on level 2. So the distance from source to node 8 is 2.

We didn’t yet reach our target node, that is node 10. So let’s visit the next nodes. we can directly go to from node 6, node 7 and node 8.

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/ce24546b-d5a1-46f6-b0ed-788c084eae77/Untitled.png

We can see that, we found node 10 at level 3. So the shortest path from source to node 10 is 3. We searched the graph level by level and found the shortest path. Now let’s erase the edges that we didn’t use:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/39377729-3e03-48a2-9b6a-9694c7bf4b81/Untitled.png

After removing the edges that we didn’t use, we get a tree called BFS tree. This tree shows the shortest path from source to all other nodes.

So our task will be, to go from source to level 1 nodes. Then from level 1 to level 2 nodes and so on until we reach our destination. We can use queue to store the nodes that we are going to process. That is, for each node we’re going to work with, we’ll push all other nodes that can be directly traversed and not yet traversed in the queue.

The simulation of our example: