- Linked List is Series of Nodes
- Each node Consist of two Parts viz Data Part & Pointer Part
- Pointer Part stores the address of the next node
What is node ?
- Each Linked List Consists of Series of Nodes
- In above Diagram , Linked List Consists of three nodes A,B,C etc
- Node A has two part one data part which consists of the 5 as data and the second part which contain the address of the next node (i.e it contain the address of the next node)
