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

Level and Parent info after BFS walk. More...

#include <graph.h>

Data Fields

t_gen parent
 Pointer to Parent Vertex. More...
 
int level
 Level of vertex from the source. More...
 
int comp
 Subgraph id of vertex. More...
 

Detailed Description

Level and Parent info after BFS walk.

Definition at line 64 of file graph.h.

Field Documentation

◆ comp

int comp

Subgraph id of vertex.

Definition at line 67 of file graph.h.

◆ level

int level

Level of vertex from the source.

Definition at line 66 of file graph.h.

◆ parent

t_gen parent

Pointer to Parent Vertex.

Definition at line 65 of file graph.h.


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