English

Linked lists in Data Structure

Advertisements
  • Introduction to linked lists 
  • Representation of linked list in memory

Linked lists

A linked list is a linear collection of data elements, called nodes, where the linear order is given by means of pointers i.e. each node is divided into two parts. The first part contains the information of the element, and second part is link field which contains the address of the next node in the list. 

The left part of a node contains information; the right part contains a pointer to the next node. The last node's pointer is null. The list starts with the address of the first node, and an empty list's start pointer is null. 

Advantages of Linked List 

In comparison with lists i.e. arrays, linked lists have certain advantages. Insertion and deletion of any element in an array is expensive. Array elements also require consecutive memory locations. In linked lists, insertion and deletion is easy. Linked list also does not require consecutive memory locations. 

Representation of linked list in memory 

Linked list can be represented by two linear arrays. One is INFO, containing information part and other is LINK, containing next pointer field. The name of linked list, start, contains beginning of the list. 

If you would like to contribute notes or other learning material, please submit them using the button below.
Advertisements
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×