The disjoint set adt

In this chapter, we describe an efficient data structure to solve the equivalence problem. The data structure is simple to implement. Each routine requires only a few lines of code, and a simple array can be used. The implementation is also extremely fast, requiring constant average time per operation. This data structure is also very interesting from a theoretical point of view, because its analysis is extremely difficult; the functional form of the worst case is unlike any we have yet seen. For the disjoint set ADT, we will Show how it can be implemented with minimal coding effort.

  • Greatly increase its speed, using just two simple observations.

  • Analyze the running time of a fast implementation.

  • See a simple application.


Classes
Quiz
Videos
References
Books