C Container Collection (CCC)
Loading...
Searching...
No Matches
CCC_Singly_linked_list_node Struct Reference

#include <private_singly_linked_list.h>

Collaboration diagram for CCC_Singly_linked_list_node:

Detailed Description

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_nodenext
 

Field Documentation

◆ next

struct CCC_Singly_linked_list_node* CCC_Singly_linked_list_node::next

The next element. Non-null if elem is in list.


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