MCPcopy Create free account
hub / github.com/TheAlgorithms/JavaScript / DisjointSetTreeNode

Class DisjointSetTreeNode

Graphs/KruskalMST.js:1–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class DisjointSetTreeNode {
2 // Disjoint Set Node to store the parent and rank
3 constructor(key) {
4 this.key = key
5 this.parent = this
6 this.rank = 0
7 }
8}
9
10class DisjointSetTree {
11 // Disjoint Set DataStructure

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected