Function definitions are :
// DFS algorithm void Graph::DFS(int current) { visited[current] = true; cout<