osurs  0.0.1
Data Fields
LinkedList Struct Reference

Linked list. More...

#include <linkedlist.h>

Collaboration diagram for LinkedList:
Collaboration graph
[legend]

Data Fields

ListNodehead
 
ListNodetail
 
size_t size
 

Detailed Description

Linked list.

This structure represents a LinkedList data structure. It consists of pointers to the head and tail of the list (the first and last nodes in the list), as well as an integer size representing the number of elements in the list.

Field Documentation

◆ head

ListNode* LinkedList::head

Pointer to the head of the list.

◆ size

size_t LinkedList::size

Number of elements in the list.

◆ tail

ListNode* LinkedList::tail

Pointer to the tail of the list.


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