Linked Lists
Linked Lists
Unit-I
Linked Lists
• Linked list is a linear data structure in which elements are not stored at a contiguous location, rather
they are linked using pointers.
• Linked list forms a series of connected nodes, where each node stores the data and the address of
the next node.
• Node Components:
• Data: It holds the actual value or data associated with the node.
• Next Pointer: It stores the memory address (reference) of the next node in the sequence.
• Head and Tail: The linked list is accessed through the head node, which points to the first node in the
list. The last node in the list points to NULL or nullptr, indicating the end of the list. This node is known
as the tail node.
Linked Lists Contd.
• Why do we need linked lists?
• Dynamic Data structure: The size of memory can be allocated or de-allocated at run time based
on the operation.
• Ease of Insertion/Deletion: The insertion and deletion of elements are simpler than arrays since
no elements need to be shifted after insertion and deletion, just the address needed to be
updated.
• Efficient Memory Utilization: Linked list is a dynamic data structure, the size increases or
decreases as per the requirement, so this avoids the wastage of memory.
• Implementation: Various advanced data structures can be implemented using a linked list like a
stack, queue, graph, hash maps, etc.
• For example:
• In a system, if we maintain a sorted list of IDs in an array id[] = [1000, 1010, 1050, 2000, 2040].
• 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. Due to this, so much
work is being done which affects the efficiency of the code.
Linked Lists Contd.
• Types of linked lists:
• Singly-Linked List
• Doubly-Linked List
• Circular Linked List
• Singly-Linked List:
• Each node contains a reference to the next node in the sequence. Traversing a singly linked list is done in
forward direction.
Linked Lists Contd.
• Doubly-Linked List:
• Each node contains references to both the next and previous nodes. This allows for traversal in both forward
and backward directions, but it requires additional memory for the backward reference.
• Circular-Linked List:
• The last node points back to the head node, creating a circular structure. It can be either singly or
doubly linked.
Linked Lists Contd.
• Operations on Linked Lists:
• Insertion: Adding a new node to a linked list involves adjusting the pointers of the existing nodes to maintain
the proper sequence. Insertion can be performed at the beginning, end, or any position within the list.
• Deletion: Removing a node from a linked list requires adjusting the pointers of the neighboring nodes to bridge
the gap left by the deleted node. Deletion can be performed at the beginning, end, or any position within the
list.
• Searching: Searching for a specific value in a linked list involves traversing the list from the head node until the
value is found or the end of the list is reached.
• Instead of displaying data, we have to check whether the data matches with the item to find.
• Initialize PTR with the address of HEAD. Now the PTR points to the first node of the linked list.
• A while loop is executed which will compare data of every node with item.
• If item has been found then control goes to last step.
Thank You