22#ifndef BRANCHANDBOUND1TREE_LINKED_LIST_H
23#define BRANCHANDBOUND1TREE_LINKED_LIST_H
The double linked List element.
void * value
The value of the element, void pointer to be able to store any type of data.
struct DllElem * prev
The previous element in the List.
struct DllElem * next
The next element in the List.
The iterator for the List.
DllElem * curr
The current DllElem (element) of the List.
List * list
The List to iterate.
size_t index
The current index of the element in the List.
size_t size
The current size of the List.
DllElem * head
The head of the list as a DllElem.
DllElem * tail
The tail of the list as a DllElem.