Find out how HackerEarth can boost your tech recruiting

Learn more
piller_image

Breadth First Search example (BFS) – How GPS navigation works

Breadth First Search example,BFS real life application, how GPS navigation works

There are differences in the route which I usually take and the one which GPS shows as the shortest, probably due to the algorithms used. I learned from my graph theory data structure classes that (BFS) Breadth First search example is GPS navigation and digital maps. I tried looking for the possible use of Algorithms (Breadth First Search example or A* application) used in GPS navigation on the web, but I couldn’t find a lot of details. So here is how Breadth First Search is used in real life application like GPS.

Let’s first understand working of GPS navigation

Digital maps, unlike humans, see streets as a bunch of nodes. The 2.6-mile road from the Columbus Circle station (59 st) to Cathedral Pkwy (110 st) is called Central Park West. We (humans) consider this road a single entity (You may divide it into few more segments based on metro stations or intersections, but not more than that).

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

 

But a GPS navigation or any other digital map divides it into hundreds of segments, with some only 24 meters long. A GPS looks at this street as a graph divided into vertices and edges.

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

Considering this, there is a lot of data to be covered and calculated while finding the shortest path.

Before we begin you must know the answers to the following:

What is a graph?

A graph usually looks like the image below and is made up of vertices and edges (represented by lines and circles, respectively).

 

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

The objective of a graph is to represent a problem as a set of points that are connected in various ways using edges. With the help of such graphs, we tend to solve our problems by applying various algorithms.

Let’s take an example to understand better.

Facebook is a good example to understand graph theory. 

Facebook has millions of users. If a person needs to find a friend, he can use an array and search. But that would take a  lot of time and memory to search for so many people, making the problem quite complex.

But if the same scenario is represented using a graph, the problems tend to get solved easily. With a graph, you know that these two people are actually friends(Though real-life scenarios are not exactly that simple!).Check this video on how graph theory is used in social networks

Graph theories are frequently used in various other fields, such as maps, e-commerce, and computer games.

Before we go further down this road, read this detailed article about graph theory, which explains other important aspects of Graphs such as Directed, Undirected, Cycle or Loop, and Matrix.

What’s the difference between a Graph and a Tree?

A tree is a  special type of graph, i.e., a minimal graph, where there is only one path between two vertices.

So what is Breadth First Search and how does it work?

Depth First Search (DFS) and Breadth First Search (BFS) are algorithms, or in simple terms, they are methods to traverse a graph.

Before I explain Breadth First Search, consider this example.

Take a graph with 13 nodes. When  Breadth First Search is applied to this graph, the algorithm traverses from node 1 to node 2 and then to nodes 3, 4, 5,v6 (in green)  and so on in the given order.

If you consider 1 (in red) as the first node, you observe that Breadth First Search gradually moves outward, considering each neighboring node first.

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, Breadth First Search, Breadth First Search application

This eventually brings us to the accepted definition of the Breadth First Search algorithm:

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.”

Graph Traversal in Maps

Take a look at this simple “Gridworld” which is used for various graph traversal algorithms. Your digital map considers your world a similar grid, which is made up of intersections connected to each other.

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

 

Now for the grid shown, there could be N number of ways to traverse from point A to point P.

Following are two of these N ways in which one can travel from point A to point P.

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

 

So how does an algorithm decide which the shortest way to reach a destination is? Graph Traversal Algorithms!

The Breadth First Search algorithm looks at the map as we do; it just can’t perceive it completely. When you have to travel from one destination to another, you draw a line from point A to point B, and then chose the road closest to that line. Algorithms repeat the same method choosing the node nearest to the intersection points, eventually selecting the route with the shortest length.

Let’s take a simple example of GridWorld given above and try solving it using Breadth First Search search. Assume you need to travel from location A to location P.

Note: Every vertex in the image is given a number, which is the total distance from the source and an alphabet which represents the previous node.

Breadth First Search for GridWorld 

Step 1 – Visit neighboring nodes to A, i.e, B, E, and F. The vertex to B would become 1-A and since E and F are also at an equal distance as B, hence vertices to both E and F from A, could be denoted as 1-A too. There is the no particular order for node preference but to make it simple, we began with B.

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

 

Step 2 – Since all the neighboring nodes of A have now been traced, we will mark “A” as visited.

And take the next visited node as the source node, which in this case is node B. Visit all the adjacent nodes to B, which are C (2B) and G (2B). Node F is considered in the previous step from A, hence it is not visited again. Once all neighboring nodes from one node are visited, mark them as visited and move to the next step.

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

 

Step 3 – Visit all neighboring nodes of Node E, which are I (2E) and J (2E), and mark E as visited.

Step 4 – Visit neighboring nodes of Node F, which is K (2F). Since all the adjacent nodes have been visited by either B or E, mark node F as visited.

Step 5 – Repeat the process until all the nodes on the grid are visited at least once.

Step 6 – Once all nodes are visited, you would find that the distance required to reach from A to P is 3 and the shortest route is diagonal.

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

 

If you remove all the vertices which are not used to connect the nodes, as in the graph above.

Such graphs are called minimum spanning trees, where each node is connected to at least one vertex.

But in the real world, you can’t always move diagonally. Most of the portions in between the intersection are occupied by houses, shops, malls, and metro stations. So how does BFS work in such circumstances? Let’s understand it with the same GridWorld example, but in this case, the algorithm is not allowed to move or visit a node diagonally.

Step 1 – Consider node A as source and visit all neighboring nodes of A, which are B(1A) and E (1A). Mark A as visited.

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

 

Step 2 – Visit all neighboring nodes of B, node C (2B) and node F (2B), and mark B as visited.

Step 3 – Visit neighboring nodes to E, since F is already visited by B. Visit node I (2E) and mark E as visited

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

 

Step 4 – Repeat the steps for all nodes until each of them has been visited at least once.  Mark nodes you considered visited.

Step 5 – Remove all the unconnected/unwanted vertices, and convert the graph into a minimum spanning tree connecting each node at least once.

 – Highlight the nodes connecting source node A to node P, which has distance 6 and is the shortest path between two nodes. 

BFS, GPS, Google Maps, Breadth-First Search, Algorithm, How maps work, BFS application, where is BFS use, BFS application in real life, How does GPS works, What are best use of GPS, How does google map work, How does map works, New York map explained, Google map explained, BFS application, BFS used in real life, BFS used in real life, Breadth search algorithm example

 

You now understand why GPS navigation didn’t suggest the path A, E, I, M, N, O, P or A,B,C, D, H, L, P though they were equidistant

Once you’ve understood the way GPS works, you’d wish the world could be a simple Grid! But to a programmer’s disappointment, it isn’t. Hence, for a GPS, distance is not the only factor in choosing a route, rather elapsed time, the speed limit on a route, live traffic update, the number of stop signals all has to be taken into consideration. That’s why you would find your GPS occasionally suggesting winding state highways to travel instead of the usual national highways.

Most of the GPS or digital maps have evolved over Breadth First Search to A* algorithm (You can read more about A* algorithm – Here) due to better complexity over a period of time.

Yet, GPS is one of the most amazing devices. Connected to satellites 12,000 miles above the planet, it calculates your position in real time with more than 50,00,000 possibilities for a particular route.

Watch the video explaining the Use of Breadth first search in GPS navigation here –

 

 

Hackerearth Subscribe

Get advanced recruiting insights delivered every month

Related reads

Best Interview Questions For Assessing Tech Culture Fit in 2024
Best Interview Questions For Assessing Tech Culture Fit in 2024

Best Interview Questions For Assessing Tech Culture Fit in 2024

Finding the right talent goes beyond technical skills and experience. Culture fit plays a crucial role in building successful teams and fostering long-term…

Best Hiring Platforms in 2024: Guide for All Recruiters
Best Hiring Platforms in 2024: Guide for All Recruiters

Best Hiring Platforms in 2024: Guide for All Recruiters

Looking to onboard a recruiting platform for your hiring needs/ This in-depth guide will teach you how to compare and evaluate hiring platforms…

Best Assessment Software in 2024 for Tech Recruiting
Best Assessment Software in 2024 for Tech Recruiting

Best Assessment Software in 2024 for Tech Recruiting

Assessment software has come a long way from its humble beginnings. In education, these tools are breaking down geographical barriers, enabling remote testing…

Top Video Interview Softwares for Tech and Non-Tech Recruiting in 2024: A Comprehensive Review
Top Video Interview Softwares for Tech and Non-Tech Recruiting in 2024: A Comprehensive Review

Top Video Interview Softwares for Tech and Non-Tech Recruiting in 2024: A Comprehensive Review

With a globalized workforce and the rise of remote work models, video interviews enable efficient and flexible candidate screening and evaluation. Video interviews…

8 Top Tech Skills to Hire For in 2024
8 Top Tech Skills to Hire For in 2024

8 Top Tech Skills to Hire For in 2024

Hiring is hard — no doubt. Identifying the top technical skills that you should hire for is even harder. But we’ve got your…

How HackerEarth and Olibr are Reshaping Tech Talent Discovery
How HackerEarth and Olibr are Reshaping Tech Talent Discovery

How HackerEarth and Olibr are Reshaping Tech Talent Discovery

In the fast-paced tech world, finding the right talent is paramount. For years, HackerEarth has empowered tech recruiters to identify top talent through…

Hackerearth Subscribe

Get advanced recruiting insights delivered every month

View More

Top Products

Hackathons

Engage global developers through innovation

Hackerearth Hackathons Learn more

Assessments

AI-driven advanced coding assessments

Hackerearth Assessments Learn more

FaceCode

Real-time code editor for effective coding interviews

Hackerearth FaceCode Learn more

L & D

Tailored learning paths for continuous assessments

Hackerearth Learning and Development Learn more