Definition
Singly Linked List
A singly linked list is a linear data structure consisting of node, where each node has the following information:
- value: the actual value represented by the node
- next node: the successor node, which might be null for the tail (last node)