Skip to content

Commit 3db04ee

Browse files
authored
Merge branch 'master' into btree
2 parents e550a59 + 3f2fa29 commit 3db04ee

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
# Order is important. The last matching pattern has the most precedence.
99

10-
* @raklaptudirm @tjgurwara99 @yanglbme
10+
* @raklaptudirm @yanglbme

graph/kruskal.go

-6
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ func KruskalMST(n int, edges []Edge) ([]Edge, int) {
2828
// Create a new UnionFind data structure with 'n' nodes
2929
u := NewUnionFind(n)
3030

31-
// Initialize each node in the UnionFind data structure
32-
for i := 0; i < n; i++ {
33-
u.parent[i] = i
34-
u.size[i] = 1
35-
}
36-
3731
// Sort the edges in non-decreasing order based on their weights
3832
sort.SliceStable(edges, func(i, j int) bool {
3933
return edges[i].Weight < edges[j].Weight

0 commit comments

Comments
 (0)