Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
152 Bytes
package torea;
interface IUnionfind{
int find(int a);
boolean connected(int a, int b);
void union(int a, int b);
int count();
}