Wavetrace
Results
2
issues of
Wavetrace
The `is_connected()` function is implemented in terms of `is_rechable()`, effectively checking if each vertex is reachable from each other vertex in a nested loop. This quickly becomes terribly slow as...
is_connected function is documented as ``` // Is the undirected graph connected? // Is the directed graph strongly connected? ``` and achieves this goal by checking if each vertex is...