mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
one liner docs added
This commit is contained in:
parent
0c8d149fc6
commit
95b362f3b6
@ -42,8 +42,8 @@ namespace sublist_search {
|
||||
* @brief A Node structure representing a single link Node in a linked list
|
||||
*/
|
||||
struct Node {
|
||||
uint32_t data = 0;
|
||||
Node *next{};
|
||||
uint32_t data = 0; // The key/value of the node
|
||||
Node *next{}; // Pointer to the next node
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user