diff --git a/algorithms/CPlusPlus/Graphs/prims-algorithm.cpp b/algorithms/CPlusPlus/Graphs/prims-algorithm.cpp index 49d4a094..0849ff62 100644 --- a/algorithms/CPlusPlus/Graphs/prims-algorithm.cpp +++ b/algorithms/CPlusPlus/Graphs/prims-algorithm.cpp @@ -1,5 +1,5 @@ /* -APPROACH: We will have 3 arrays(key, mst and parent). +APPROACH:- We will have 3 arrays(key, mst and parent). Significance of all three arrays:- -> Key : This array holds the weight/ cost of the MST.