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 <queue>
#include <vector>
Include dependency graph for breadth_first_search.cpp:

Namespaces

 graph
 Graph algorithms.
 

Functions

void graph::add_directed_edge (std::vector< std::vector< int >> *graph, int u, int v)
 Adds a directed edge from vertex u to vertex v. More...
 
void graph::add_undirected_edge (std::vector< std::vector< int >> *graph, int u, int v)
 Adds an undirected edge from vertex u to vertex v. Essentially adds too directed edges to the adjacency list reprsentation of the graph. More...
 
std::vector< bool > graph::breadth_first_search (const std::vector< std::vector< int >> &graph, int start)
 Function performs the breadth first search algorithm over the graph. More...
 
void tests ()
 
int main ()
 

Detailed Description

Breadth First Search Algorithm (Breadth First Search)

Author
Ayaan Khan

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

161  {
162  tests();
163 
164  size_t vertices = 0, edges = 0;
165  std::cout << "Enter the number of vertices: ";
166  std::cin >> vertices;
167  std::cout << "Enter the number of edges: ";
168  std::cin >> edges;
169 
171 
172  std::cout << "Enter space-separated pairs of vertices that form edges: "
173  << std::endl;
174  while (edges--) {
175  int u = 0, v = 0;
176  std::cin >> u >> v;
177  // Decrement the vertex index so that we can read more convenint
178  // 1-based indexing from the user input.
179  graph::add_directed_edge(&graph, u - 1, v - 1);
180  }
181 
183  return 0;
184 }
Here is the call graph for this function:

◆ tests()

void tests ( )

Test 1 Begin

Test 2 Begin

Test 3 Begins

121  {
122  /// Test 1 Begin
127 
129  std::vector<bool> correct_result = {true, true, true, true};
130 
131  assert(std::equal(correct_result.begin(), correct_result.end(),
132  returned_result.begin()));
133  std::cout << "Test 1 Passed..." << std::endl;
134 
135  /// Test 2 Begin
136  returned_result = graph::breadth_first_search(graph, 0);
137 
138  assert(std::equal(correct_result.begin(), correct_result.end(),
139  returned_result.begin()));
140  std::cout << "Test 2 Passed..." << std::endl;
141 
142  /// Test 3 Begins
143  graph.clear();
144  graph.resize(6);
151 
152  returned_result = graph::breadth_first_search(graph, 2);
153  correct_result = {false, false, true, true, false, true};
154 
155  assert(std::equal(correct_result.begin(), correct_result.end(),
156  returned_result.begin()));
157  std::cout << "Test 3 Passed..." << std::endl;
158 }
Here is the call graph for this function:
graph::breadth_first_search
std::vector< bool > breadth_first_search(const std::vector< std::vector< int >> &graph, int start)
Function performs the breadth first search algorithm over the graph.
Definition: breadth_first_search.cpp:95
std::equal
T equal(T... args)
std::vector
STL class.
graph::add_directed_edge
void add_directed_edge(std::vector< std::vector< int >> *graph, int u, int v)
Adds a directed edge from vertex u to vertex v.
Definition: breadth_first_search.cpp:66
std::cout
graph::add_undirected_edge
void add_undirected_edge(std::vector< std::vector< int >> *graph, int u, int v)
Adds an undirected edge from vertex u to vertex v. Essentially adds too directed edges to the adjacen...
Definition: breadth_first_search.cpp:81
tests
void tests()
Definition: breadth_first_search.cpp:121
std::endl
T endl(T... args)
std::vector::begin
T begin(T... args)
graph
Graph algorithms.
std::vector::end
T end(T... args)
std::cin