|
C Container Collection (CCC)
|
#include <private_singly_linked_list.h>

A recursive structure for tracking a user element in a singly linked list. Supports O(1) insert and delete at the front. Elements always have a valid element to point to in the list due to the user of a sentinel so these pointers are never NULL if an element is in the list.
Data Fields | |
| struct CCC_Singly_linked_list_node * | next |
| struct CCC_Singly_linked_list_node* CCC_Singly_linked_list_node::next |
The next element. Non-null if elem is in list.