For a given ordering, this stores later neighbors and earlier neighbors for a given vertex in linked lists. More...
#include <degeneracy_helper.h>
Data Fields | |
int | vertex |
the vertex that owns this neighbor list | |
LinkedList * | earlier |
a linked list of neighbors that come before this vertex in the ordering | |
LinkedList * | later |
a linked list of neighbors that come after this vertex in the ordering | |
int | orderNumber |
the position of this verex in the ordering |
For a given ordering, this stores later neighbors and earlier neighbors for a given vertex in linked lists.
a linked list of neighbors that come before this vertex in the ordering
a linked list of neighbors that come after this vertex in the ordering
int orderNumber |
the position of this verex in the ordering
int vertex |
the vertex that owns this neighbor list