Linked List :


Linked List is also a Linear Data structure.

The main difference between List and Linked lists is the way that they store elements in memory. lists use a contiguous memory block to store references to their data, whereas linked lists store references as part of their own elements.


Linked List Concepts :


Each element of a linked list is called a node, and every node has two different fields:


Linked List is a collection of nodes, where head points to the first node of the linked list and the last node of the linked list points to None.