Path splitting

Home > Computer Science > Algorithms and data structures > Disjoint Set Union > Path splitting

In this implementation, when we traverse a path to find the representative of a set, we split the path into two halves and point all elements on one half directly to the representative. This breaks the path up into smaller pieces, reducing the time for subsequent traversals. The time complexity of this implementation is also O(alpha(n)).