Using depth first search to test graph connectivity in C++
Problem descriptionGiven a directed or undirected graph, determine whether it is connected or not. Specifically is it possible for any pair of nodes to communicate with each other?This brief post …