#include #include using namespace std; const int MAXN = 100; // maximum number of vertices in the graph void bfs(int adj_list[MAXN][MAXN], int n, int start) { bool visited[MAXN] = {false}; // keep track of visited vertices queue q; // initialize a queue for BFS visited[start] = true; q.push(start); while(!q.empty()) { int curr_vertex = q.front(); q.pop(); // process the current vertex cout << curr_vertex << " "; // visit all the neighbors of the current vertex for(int i=0; i