public class DisjointSet<E>
extends java.lang.Object
DisjointSet is an implementation of disjoint-set forests
using the path compression and union-by-rank heuristics to achieve
O(m * alpha(m, n)) runtime, where 'm' is the total number of
operations, 'n' is the total number of elements in the set, and
'alpha' denotes the *extremely* slowly-growing inverse Ackermann
function.| Constructor and Description |
|---|
DisjointSet()
Creates a
DisjointSet. |
| Modifier and Type | Method and Description |
|---|---|
java.util.Map<E,E> |
asMap()
Returns an unmodifiable
Map view of the disjoint
set, where every element is mapped to its canonical representative. |
boolean |
contains(java.lang.Object o)
Determines if there is a set of more than one element containing
o. |
E |
find(E o)
Returns the representative of the (unique) set containing
o. |
static void |
main(java.lang.String[] args)
Self-test method.
|
java.lang.String |
toString()
Returns a human-readable representation of the DisjointSet.
|
void |
union(E o1,
E o2)
Unites the dynamic sets that contain
o1 and
o2, say S1 and S2, into a new set that is the
union of these two sets. |
public DisjointSet()
DisjointSet.public void union(E o1, E o2)
o1 and
o2, say S1 and S2, into a new set that is the
union of these two sets. The two sets are assumed to be
disjoint prior to the operation. The representative of the
resulting set is the representative of either S1 or S2; if
both S1 and S2 were previously singletons, the representative
of S1 union S2 is the representative of S2.public boolean contains(java.lang.Object o)
o.public java.util.Map<E,E> asMap()
Map view of the disjoint
set, where every element is mapped to its canonical representative.public java.lang.String toString()
toString in class java.lang.Objectpublic static void main(java.lang.String[] args)
Copyright (c) 2006 C. Scott Ananian