C Everything
This is a C repository containing a curated set of generic data structures and algorithm.
t_djset_node Struct Reference

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...
 

Detailed Description

Disjoint set node definition.

Definition at line 9 of file disjoint_set.h.

Field Documentation

◆ parent

int parent

Parent idx of the set.

Definition at line 11 of file disjoint_set.h.

◆ size

int size

size of the current set

Definition at line 10 of file disjoint_set.h.


The documentation for this struct was generated from the following file: