You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DataStructures/Graphs/Kruskal.java
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@
3
3
//The graph needs to be connected, because if there are nodes impossible to reach, there are no edges that could connect every node in the graph.
4
4
//KA is a Greedy Algorithm, because edges are analysed based on their weights, that is why a Priority Queue is used, to take first those less weighted.
5
5
//This implementations below has some changes compared to conventional ones, but they are explained all along the code.
6
-
//In case you need to know anyhing else, I would be willing to answer all your doubts, you can contact me by https://www.linkedin.com/in/marcosvillacanas/
0 commit comments