Linked List
Like arrays, Linked List is a linear data structure. Unlike arrays, linked list elements are not stored at contiguous location; the elements are linked using pointers.
There are lots of different type of linked list. E.g singly linked list, doubly linked list, Circular linked list, Unrolled linked list.