TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
Public Attributes | |
int32_t | val |
Node * | next |
value of the current link | |
A Node class containing a value and pointer to another link
Definition at line 42 of file reverse_a_linked_list.cpp.
Node* data_structures::linked_list::Node::next |
value of the current link
Definition at line 45 of file reverse_a_linked_list.cpp.
int32_t data_structures::linked_list::Node::val |
Definition at line 44 of file reverse_a_linked_list.cpp.