edu.stanford.nlp.util
Interface DisjointSet

All Known Implementing Classes:
FastDisjointSet

public interface DisjointSet

Disjoint Set: It's the disjoint set interface.

Author:
Dan Klein

Method Summary
 Object find(Object o)
           
 void union(Object a, Object b)
           
 

Method Detail

find

public Object find(Object o)

union

public void union(Object a,
                  Object b)


Stanford NLP Group