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

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

#include <list.h>

Data Fields

int key
int data
struct ListNodenext

Detailed Description

A node in a singly linked list.


    Copyright 2017-2025 Manoel Vilela

    Author: Manoel Vilela
   Contact: manoel_vilela@engineer.com

Organization: UFC


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

Field Documentation

◆ data

int ListNode::data

◆ key

int ListNode::key

◆ next

struct ListNode* ListNode::next

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