TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
A Node structure representing a single link Node in a linked list. More...
Public Attributes | |
uint32_t | data = 0 |
the key/value of the node | |
Node * | next {} |
pointer to the next node | |
A Node structure representing a single link Node in a linked list.
Definition at line 48 of file sublist_search.cpp.
uint32_t search::sublist_search::Node::data = 0 |
the key/value of the node
Definition at line 49 of file sublist_search.cpp.
Node* search::sublist_search::Node::next {} |