> For the complete documentation index, see [llms.txt](https://cs61b-2.gitbook.io/cs61b-textbook/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cs61b-2.gitbook.io/cs61b-textbook/14.-disjoint-sets/14.1-introduction.md).

# 14.1 Introduction

People like you and I reside in our countries and live here. We can think of each country as a set and all of the people within it as elements within that set. The same person cannot live in two different countries simultaneously. What we have just modeled is a **disjoint set**.&#x20;

> Two sets are named *disjoint sets* if they have no elements in common. A Disjoint-Sets (or Union-Find) data structure keeps track of a fixed number of elements partitioned into a number of *disjoint sets*. The data structure has two operations:

1. `connect(x, y)`: connect `x` and `y`. Also known as `union`
2. `isConnected(x, y)`: returns true if `x` and `y` are connected (i.e. part of the same set).

{% embed url="<https://www.youtube.com/watch?v=JNa8BRRs8L4&ab_channel=JoshHug>" %}
Professor Hug's Explanation of an Introduction to Disjoin Sets
{% endembed %}

A Disjoint Sets data structure has a fixed number of elements that each start out in their own subset. By calling `connect(x, y)` for some elements `x` and `y`, we merge subsets together.

For example, say we have four elements which we'll call A, B, C, D. To start off, each element is in its own set:

<figure><img src="/files/sEfO1znBF8cHNLKadKVm" alt=""><figcaption><p>{A} {B} {C} {D}</p></figcaption></figure>

After calling `connect(A, B)`:

\ <br>

<figure><img src="/files/JeThkH46F32T6wrjpFop" alt=""><figcaption><p>{A, B} {C} {D}</p></figcaption></figure>

Note that the subsets A and B were merged. Let's check the output some `isConnected` calls:

\
`isConnected(A, B) -> true`

`isConnected(A, C) -> false`

After calling `connect(A, D)`:

\ <br>

<figure><img src="/files/rhg9c68VjDpaUoSGMDBq" alt=""><figcaption><p>{A, B, D} {C}</p></figcaption></figure>

\
We find the set A is part of and merge it with the set D is part of, creating one big A, B, D set. C is left alone.

`isConnected(A, D) -> true`\
`isConnected(A, C) -> false`

<br>

With this intuition in mind, let's formally define what our DisjointSets interface looks like. As a reminder, an **interface** determines *what* behaviors a data structure should have (but not *how* to accomplish it). In this way, any class that implements the `DisjointSets` interface knows to always include functions: `connect(int p, int q)` and `isConnected(int p, int q)` as seen below. For now, we'll only deal with sets of non-negative integers. This is not a limitation because in production we can assign integer values to anything we would like to represent.

```java
public interface DisjointSets {
    /** connects two items P and Q */
    void connect(int p, int q);

    /** checks to see if two items are connected */
    boolean isConnected(int p, int q); 
}
```

\
But how are we going to save data for these Disjoint sets to see which member belongs to it's corresponding set? What data structures are we going to use to represent this awesome data structure? In addition to learning about how to implement a fascinating data structure, this chapter will be a chance to see how an implementation of a data structure evolves. We will discuss four iterations of a Disjoint Sets design before being satisfied: [*Quick Find*](/cs61b-textbook/14.-disjoint-sets/14.2-quick-find.md) *→* [*Quick Union*](/cs61b-textbook/14.-disjoint-sets/14.3-quick-union.md) *→* [*Weighted Quick Union (WQU)*](/cs61b-textbook/14.-disjoint-sets/14.4-weighted-quick-union-wqu.md) *→* [*WQU with Path Compression*](/cs61b-textbook/14.-disjoint-sets/14.5-weighted-quick-union-with-path-compression.md). **We will see how design decisions greatly affect asymptotic runtime and code complexity.**
