Algorithms_in_C++  1.0.0
Set of algorithms implemented in C++.
breadth_first_search.cpp File Reference

Breadth First Search Algorithm (Breadth First Search) More...

#include <algorithm>
#include <cassert>
#include <iostream>
#include <list>
#include <map>
#include <queue>
#include <string>
#include <vector>
Include dependency graph for breadth_first_search.cpp:

Classes

class  graph::Graph< T >
 

Namespaces

 graph
 Graph Algorithms.
 

Functions

static void tests ()
 
int main ()
 

Detailed Description

Breadth First Search Algorithm (Breadth First Search)

Author
Ayaan Khan
Aman Kumar Pandey

Breadth First Search also quoted as BFS is a Graph Traversal Algorithm. Time Complexity O(|V| + |E|) where V are the number of vertices and E are the number of edges in the graph.

Applications of Breadth First Search are

  1. Finding shortest path between two vertices say u and v, with path length measured by number of edges (an advantage over depth first search algorithm)
  2. Ford-Fulkerson Method for computing the maximum flow in a flow network.
  3. Testing bipartiteness of a graph.
  4. Cheney's Algorithm, Copying garbage collection.

And there are many more...

working

In the implementation below we first created a graph using the adjacency list representation of graph. Breadth First Search Works as follows it requires a vertex as a start vertex, Start vertex is that vertex from where you want to start traversing the graph. We maintain a bool array or a vector to keep track of the vertices which we have visited so that we do not traverse the visited vertices again and again and eventually fall into an infinite loop. Along with this boolen array we use a Queue.

  1. First we mark the start vertex as visited.
  2. Push this visited vertex in the Queue.
  3. while the queue is not empty we repeat the following steps
    1. Take out an element from the front of queue
    2. Explore the adjacency list of this vertex if element in the adjacency list is not visited then we push that element into the queue and mark this as visited

Function Documentation

◆ main()

int main ( void  )

Main function

186  {
187  tests();
188  size_t edges = 0;
189  std::cout << "Enter the number of edges: ";
190  std::cin >> edges;
191 
193 
194  std::cout << "Enter space-separated pairs of vertices that form edges: "
195  << std::endl;
196  while (edges--) {
197  int u = 0, v = 0;
198  std::cin >> u >> v;
199  g.add_edge(u, v);
200  }
201 
203  return 0;
204 }
static void tests()
Definition: breadth_first_search.cpp:139
Definition: breadth_first_search.cpp:64
void add_edge(T u, T v, bool bidir=true)
Definition: breadth_first_search.cpp:74
std::map< T, bool > breadth_first_search(T src)
Definition: breadth_first_search.cpp:96
T endl(T... args)
Here is the call graph for this function:

◆ tests()

static void tests ( )
static

Test function

Test 1 Begin

Test 2 Begin

Test 3 Begins

139  {
140  /// Test 1 Begin
142  std::map<int, bool> correct_result;
143  g.add_edge(0, 1);
144  g.add_edge(1, 2);
145  g.add_edge(2, 3);
146  correct_result[0] = true;
147  correct_result[1] = true;
148  correct_result[2] = true;
149  correct_result[3] = true;
150 
151  std::map<int, bool> returned_result = g.breadth_first_search(2);
152 
153  assert(returned_result == correct_result);
154  std::cout << "Test 1 Passed..." << std::endl;
155 
156  /// Test 2 Begin
157  returned_result = g.breadth_first_search(0);
158 
159  assert(returned_result == correct_result);
160  std::cout << "Test 2 Passed..." << std::endl;
161 
162  /// Test 3 Begins
164 
165  g2.add_edge("Gorakhpur", "Lucknow", false);
166  g2.add_edge("Gorakhpur", "Kanpur", false);
167  g2.add_edge("Lucknow", "Agra", false);
168  g2.add_edge("Kanpur", "Agra", false);
169  g2.add_edge("Lucknow", "Prayagraj", false);
170  g2.add_edge("Agra", "Noida", false);
171 
172  std::map<std::string, bool> correct_res;
173  std::map<std::string, bool> returned_res =
174  g2.breadth_first_search("Kanpur");
175  correct_res["Gorakhpur"] = false;
176  correct_res["Lucknow"] = false;
177  correct_res["Kanpur"] = true;
178  correct_res["Agra"] = true;
179  correct_res["Prayagraj"] = false;
180  correct_res["Noida"] = true;
181  assert(correct_res == returned_res);
182  std::cout << "Test 3 Passed..." << std::endl;
183 }
Here is the call graph for this function: