TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
Loading...
Searching...
No Matches
search::sublist_search::Node Struct Reference

A Node structure representing a single link Node in a linked list. More...

Collaboration diagram for search::sublist_search::Node:
[legend]

Public Attributes

uint32_t data = 0
 the key/value of the node
 
Nodenext {}
 pointer to the next node
 

Detailed Description

A Node structure representing a single link Node in a linked list.

Definition at line 48 of file sublist_search.cpp.

Member Data Documentation

◆ data

uint32_t search::sublist_search::Node::data = 0

the key/value of the node

Definition at line 49 of file sublist_search.cpp.

◆ next

Node* search::sublist_search::Node::next {}

pointer to the next node

Definition at line 50 of file sublist_search.cpp.

50{};

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