Concept Flow - Creating a Singly Linked List from Scratch
Start
Create head node with data
Set head.next = NULL
For each new data item
Create new node
Traverse list to last node
Set last_node.next = new_node
Set new_node.next = NULL
Repeat or End
We start by creating the first node as head. For each new item, we create a node, find the last node, and link the new node at the end.
