TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
Loading...
Searching...
No Matches
data_structures::linked_list::Node Class Reference
Collaboration diagram for data_structures::linked_list::Node:
[legend]

Public Attributes

int32_t val
 
Nodenext
 value of the current link
 

Detailed Description

A Node class containing a value and pointer to another link

Definition at line 42 of file reverse_a_linked_list.cpp.

Member Data Documentation

◆ next

Node* data_structures::linked_list::Node::next

value of the current link

Definition at line 45 of file reverse_a_linked_list.cpp.

◆ val

int32_t data_structures::linked_list::Node::val

Definition at line 44 of file reverse_a_linked_list.cpp.


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