linked list
linked list
“Linked List”
Linked List
Like arrays, Linked List is a linear data structure. Unlike arrays, linked list elements are
not stored at a contiguous location; the elements are linked using pointers.
1) The size of the arrays is fixed: So we must know the upper limit on the number of elements in
advance. Also, generally, the allocated memory is equal to the upper limit irrespective of the
usage.
2) Inserting a new element in an array of elements is expensive because the room has to be
created for the new elements and to create room existing elements have to be shifted but in Linked
list if we have the head node then we can traverse to any node through it and insert new node at
the required position.
Drawbacks:
1) Random access is not allowed. 2) Extra memory space for a pointer is required with each
element of the list.
3) Not cache friendly. Since array elements are contiguous locations, there is locality of reference
which is not there in case of linked lists.
Representation:
A linked list is represented by a pointer to the first node of the linked list. The first node is
called the head. If the linked list is empty, then the value of the head points to NULL.