Data Structures

Here are the data structures with brief descriptions:
LinkStores data and pointers to next and previous links
LinkedListStores a linked list, with sentinel links for head and tail. These sentinels contain dummy values
NeighborListFor a given ordering, this stores later neighbors and earlier neighbors for a given vertex in linked lists
NeighborListArrayFor a given ordering, this stores later neighbors and earlier neighbors for a given vertex in arrays
 All Data Structures Files Functions Variables Typedefs Defines