mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-05-08 23:23:05 +08:00
one liner docs added
This commit is contained in:
@@ -42,8 +42,8 @@ namespace sublist_search {
|
|||||||
* @brief A Node structure representing a single link Node in a linked list
|
* @brief A Node structure representing a single link Node in a linked list
|
||||||
*/
|
*/
|
||||||
struct Node {
|
struct Node {
|
||||||
uint32_t data = 0;
|
uint32_t data = 0; // The key/value of the node
|
||||||
Node *next{};
|
Node *next{}; // Pointer to the next node
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user