diff --git a/graph/connected_components.cpp b/graph/connected_components.cpp index ab35f7587..18c99cf45 100644 --- a/graph/connected_components.cpp +++ b/graph/connected_components.cpp @@ -11,6 +11,7 @@ * are connected by edges. A connected component in a graph refers to a set of * vertices which are reachable form one another. * + *
  * Example - Here is graph with 3 connected components
  *
  *      3   9           6               8
@@ -19,6 +20,7 @@
  *
  *    first          second           third
  *    component      component        component
+ * 
* */