C Everything
This is a C repository containing a curated set of generic data structures and algorithm.
|
Disjoint set node definition. More...
#include <disjoint_set.h>
Data Fields | |
int | size |
size of the current set More... | |
int | parent |
Parent idx of the set. More... | |
Disjoint set node definition.
Definition at line 9 of file disjoint_set.h.
int parent |
Parent idx of the set.
Definition at line 11 of file disjoint_set.h.
int size |
size of the current set
Definition at line 10 of file disjoint_set.h.