
org.psjava.ds.set.DisjointSet Maven / Gradle / Ivy
package org.psjava.ds.set;
public interface DisjointSet {
void makeSet(T value);
void union(T x, T y);
T find(T x);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy
package org.psjava.ds.set;
public interface DisjointSet {
void makeSet(T value);
void union(T x, T y);
T find(T x);
}