|
osurs
0.0.1
|
Linked list node. More...
#include <linkedlist.h>

Data Fields | |
| struct ListNode * | prev |
| struct ListNode * | next |
| void * | data |
Linked list node.
This structure represents a node in a LinkedList data structure. It consists of pointers to the previous and next nodes in the list, as well as a void pointer to the node's data.
| void* ListNode::data |
Data stored in the node.
| struct ListNode* ListNode::next |
Pointer to the next node in the list.
| struct ListNode* ListNode::prev |
Pointer to the previous node in the list.