Linked list
Nov 7 · 4 min read
A linked list is a data structure in computer science where each element is a separate object. Each node(we can also call each object a node) is pointing to the next node. The first node is called head and the last node is called a tail.
For example
5 → 78 → 88 → 53 →19
Over here 5 is the first node and also head, 19 is the tail and also the last node. 5 is pointing to 78 and 78 is pointing to 88 and so on. Together they create a sequence called a linked list.
Creating a linked list:

