# Linked Lists

Linked lists are one of the data structures that one learns in his DSA journey. Nowadays I am also learning linked lists and want to share about it. Linked lists are a type of data structure having nodes. You can imagine nodes as a box containing two elements

i) Data (can be anything mostly numbers)

ii) ID of the next node

There are mainly three types of linked lists we will be talking about.

1)Singly-linked lists

2)Doubly-linked lists

3)Circular linked lists.

In the next blog, I'll be talking about singly linked lists.

Thanks
