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.

C Algorithm - Introduction for Linked List | Set 1

Why Linked List?
Arrays can be used to store linear data of similar types, but arrays have following limitations.
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 room has to be created for the new elements and to create room existing elements have to shifted.

For example, in a system if we maintain a sorted list of IDs in an array id[].

id[] = [1000, 1010, 1050, 2000, 2040].

And if we want to insert a new ID 1005, then to maintain the sorted order, we have to move all the elements after 1000 (excluding 1000).
Deletion is also expensive with arrays until unless some special techniques are used. For example, to delete 1010 in id[], everything after 1010 has to be moved.

[ad type=”banner”]

Advantages over arrays
1) Dynamic size
2) Ease of insertion/deletion

Drawbacks:
1) Random access is not allowed. We have to access elements sequentially starting from the first node. So we cannot do binary search with linked lists.
2) Extra memory space for a pointer is required with each element of the list.

Representation in C:
A linked list is represented by a pointer to the first node of the linked list. The first node is called head. If the linked list is empty, then value of head is NULL.
Each node in a list consists of at least two parts:
1) data
2) pointer to the next node
In C, we can represent a node using structures. Below is an example of a linked list node with an integer data.
In Java, LinkedList can be represented as a class and a Node as a separate class. The LinkedList class contains a reference of Node class type.

[ad type=”banner”]

Python Programming:

[pastacode lang=”python” manual=”%23%20Node%20class%0Aclass%20Node%3A%0A%20%20%0A%20%20%20%20%23%20Function%20to%20initialize%20the%20node%20object%0A%20%20%20%20def%20__init__(self%2C%20data)%3A%0A%20%20%20%20%20%20%20%20self.data%20%3D%20data%20%20%23%20Assign%20data%0A%20%20%20%20%20%20%20%20self.next%20%3D%20None%20%20%23%20Initialize%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%23%20next%20as%20null%0A%20%20%0A%23%20Linked%20List%20class%0Aclass%20LinkedList%3A%0A%20%20%20%20%0A%20%20%20%20%23%20Function%20to%20initialize%20the%20Linked%20%0A%20%20%20%20%23%20List%20object%0A%20%20%20%20def%20__init__(self)%3A%20%0A%20%20%20%20%20%20%20%20self.head%20%3D%20None” message=”” highlight=”” provider=”manual”/]

First Simple Linked List in C Let us create a simple linked list with 3 nodes.

Python Programming:

[pastacode lang=”python” manual=”%23%20A%20simple%20Python%20program%20to%20introduce%20a%20linked%20list%0A%20%0A%23%20Node%20class%0Aclass%20Node%3A%0A%20%0A%20%20%20%20%23%20Function%20to%20initialise%20the%20node%20object%0A%20%20%20%20def%20__init__(self%2C%20data)%3A%0A%20%20%20%20%20%20%20%20self.data%20%3D%20data%20%20%23%20Assign%20data%0A%20%20%20%20%20%20%20%20self.next%20%3D%20None%20%20%23%20Initialize%20next%20as%20null%0A%20%0A%20%0A%23%20Linked%20List%20class%20contains%20a%20Node%20object%0Aclass%20LinkedList%3A%0A%20%0A%20%20%20%20%23%20Function%20to%20initialize%20head%0A%20%20%20%20def%20__init__(self)%3A%0A%20%20%20%20%20%20%20%20self.head%20%3D%20None%0A%20%0A%20%0A%23%20Code%20execution%20starts%20here%0Aif%20__name__%3D%3D’__main__’%3A%0A%20%0A%20%20%20%20%23%20Start%20with%20the%20empty%20list%0A%20%20%20%20llist%20%3D%20LinkedList()%0A%20%0A%20%20%20%20llist.head%20%20%3D%20Node(1)%0A%20%20%20%20second%20%3D%20Node(2)%0A%20%20%20%20third%20%20%3D%20Node(3)%0A%20%0A%20%20%20%20”’%0A%20%20%20%20Three%20nodes%20have%20been%20created.%0A%20%20%20%20We%20have%20references%20to%20these%20three%20blocks%20as%20first%2C%0A%20%20%20%20second%20and%20third%0A%20%0A%20%20%20%20llist.head%20%20%20%20%20%20%20%20second%20%20%20%20%20%20%20%20%20%20%20%20%20%20third%0A%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%0A%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%0A%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%0A%20%20%20%20%7C%201%20%20%7C%20None%20%7C%20%20%20%20%20%7C%202%20%20%7C%20None%20%7C%20%20%20%20%20%7C%20%203%20%7C%20None%20%7C%0A%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%0A%20%20%20%20”’%0A%20%0A%20%20%20%20llist.head.next%20%3D%20second%3B%20%23%20Link%20first%20node%20with%20second%20%0A%20%0A%20%20%20%20”’%0A%20%20%20%20Now%20next%20of%20first%20Node%20refers%20to%20second.%20%20So%20they%0A%20%20%20%20both%20are%20linked.%0A%20%0A%20%20%20%20llist.head%20%20%20%20%20%20%20%20second%20%20%20%20%20%20%20%20%20%20%20%20%20%20third%0A%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%0A%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%0A%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%0A%20%20%20%20%7C%201%20%20%7C%20%20o——–%3E%7C%202%20%20%7C%20null%20%7C%20%20%20%20%20%7C%20%203%20%7C%20null%20%7C%0A%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%20%0A%20%20%20%20”’%0A%20%0A%20%20%20%20second.next%20%3D%20third%3B%20%23%20Link%20second%20node%20with%20the%20third%20node%0A%20%0A%20%20%20%20”’%0A%20%20%20%20Now%20next%20of%20second%20Node%20refers%20to%20third.%20%20So%20all%20three%0A%20%20%20%20nodes%20are%20linked.%0A%20%0A%20%20%20%20llist.head%20%20%20%20%20%20%20%20second%20%20%20%20%20%20%20%20%20%20%20%20%20%20third%0A%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%0A%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7C%0A%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%0A%20%20%20%20%7C%201%20%20%7C%20%20o——–%3E%7C%202%20%20%7C%20%20o——–%3E%7C%20%203%20%7C%20null%20%7C%0A%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%20%20%20%20%20%2B—-%2B——%2B%20%0A%20%20%20%20”'” message=”” highlight=”” provider=”manual”/]

Linked List Traversal
In the previous program, we have created a simple linked list with three nodes. Let us traverse the created list and print the data of each node. For traversal, let us write a general purpose function printList() that prints any given list.

[ad type=”banner”]

Python Programming:

[pastacode lang=”python” manual=”%23%20A%20simple%20Python%20program%20for%20traversal%20of%20a%20linked%20list%0A%20%0A%23%20Node%20class%0Aclass%20Node%3A%0A%20%0A%20%20%20%20%23%20Function%20to%20initialise%20the%20node%20object%0A%20%20%20%20def%20__init__(self%2C%20data)%3A%0A%20%20%20%20%20%20%20%20self.data%20%3D%20data%20%20%23%20Assign%20data%0A%20%20%20%20%20%20%20%20self.next%20%3D%20None%20%20%23%20Initialize%20next%20as%20null%0A%20%0A%20%0A%23%20Linked%20List%20class%20contains%20a%20Node%20object%0Aclass%20LinkedList%3A%0A%20%0A%20%20%20%20%23%20Function%20to%20initialize%20head%0A%20%20%20%20def%20__init__(self)%3A%0A%20%20%20%20%20%20%20%20self.head%20%3D%20None%0A%20%0A%20%20%20%20%23%20This%20function%20prints%20contents%20of%20linked%20list%0A%20%20%20%20%23%20starting%20from%20head%0A%20%20%20%20def%20printList(self)%3A%0A%20%20%20%20%20%20%20%20temp%20%3D%20self.head%0A%20%20%20%20%20%20%20%20while%20(temp)%3A%0A%20%20%20%20%20%20%20%20%20%20%20%20print%20temp.data%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20temp%20%3D%20temp.next%0A%20%0A%20%0A%23%20Code%20execution%20starts%20here%0Aif%20__name__%3D%3D’__main__’%3A%0A%20%0A%20%20%20%20%23%20Start%20with%20the%20empty%20list%0A%20%20%20%20llist%20%3D%20LinkedList()%0A%20%0A%20%20%20%20llist.head%20%20%3D%20Node(1)%0A%20%20%20%20second%20%3D%20Node(2)%0A%20%20%20%20third%20%20%3D%20Node(3)%0A%20%0A%20%20%20%20llist.head.next%20%3D%20second%3B%20%23%20Link%20first%20node%20with%20second%0A%20%20%20%20second.next%20%3D%20third%3B%20%23%20Link%20second%20node%20with%20the%20third%20node%0A%20%0A%20%20%20%20llist.printList()” message=”” highlight=”” provider=”manual”/]

Output:

 1  2  3