data_structures
|
#include "union_find.h"
Go to the source code of this file.
Functions | |
void | union_find_union (t_union_find *uf, size_t p, size_t q) |
Merges the set containing element p with the set containing element q . More... | |
void union_find_union | ( | t_union_find * | uf, |
size_t | p, | ||
size_t | q | ||
) |
Merges the set containing element p
with the set containing element q
.
p | on element |
q | the other element |
Definition at line 16 of file union_find_union.c.