Data Structures Lerax  v3.0-102-gaf18
Opinionated Data Structures & Algorithms
Loading...
Searching...
No Matches
ListDouble Struct Reference

A node in a doubly linked list. More...

#include <list-double.h>

Data Fields

int data
struct ListDoublenext
struct ListDoubleprev

Detailed Description

A node in a doubly linked list.


    Copyright 2017-2025 Manoel Vilela

    Author: Manoel Vilela
   Contact: manoel_vilela@engineer.com

Organization: UFC


Each node contains an integer data field, a pointer to the next node in the list, and a pointer to the previous node in the list.

Field Documentation

◆ data

int ListDouble::data

◆ next

struct ListDouble* ListDouble::next

◆ prev

struct ListDouble* ListDouble::prev

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