|
DSA Hacking Club Library
|
A node in the singly linked list. More...
#include <linkedlist.h>

Public Attributes | |
| int | value |
| The integer value stored in the node. | |
| struct node * | next |
| Pointer to the next node in the list. | |
A node in the singly linked list.
Node structure for the queue.
Each node stores an integer value and a pointer to the next node.
| struct node * node::next |
Pointer to the next node in the list.
Pointer to the next node in the queue.