osurs  0.0.1
Data Fields
ListNode Struct Reference

Linked list node. More...

#include <linkedlist.h>

Collaboration diagram for ListNode:
Collaboration graph
[legend]

Data Fields

struct ListNodeprev
 
struct ListNodenext
 
void * data
 

Detailed Description

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.

Field Documentation

◆ data

void* ListNode::data

Data stored in the node.

◆ next

struct ListNode* ListNode::next

Pointer to the next node in the list.

◆ prev

struct ListNode* ListNode::prev

Pointer to the previous node in the list.


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