This video explains why we even need data structures like Linked List.
The trade off between array and linked list.
Time Complexities of Basic operation performed on Linked List:
1.) Add Element: O(n)
2.) Delete Element: O(n)
3.) Read Element at particular Index: O(n)