VOOZH about

URL: https://www.geeksforgeeks.org/dsa/why-is-deleting-in-a-singly-linked-list-o1/

⇱ Why is deleting in a Singly Linked List O(1)? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Why is deleting in a Singly Linked List O(1)?

Last Updated : 9 Mar, 2023

How does deleting a node in Singly Linked List work?

To delete a node from a linked list we need to break the link between that node and the one pointing to that node. Assume node X needs to be deleted and node Y is the one pointing to X. So, we will need to break the link between X and Y and Y will point to the node which was being pointed by X.

Types of Deletion of a node from Linked List

There can be three types of deletions:

  1. Deletion from the beginning of the linked list
  2. Deletion from the end of the linked list
  3. Deletion from in between the beginning and the end.

All the cases do not take O(1) time. Check the below section to find the time complexities of different operations.

Time Complexities of different deletion operations

Deletion from the beginning:

  • Point head to the next node
  • Time Complexity: O(1)

Deletion from the end:

  • Traverse to the second last element
  • Change its next pointer to NULL.
  • Time Complexity: O(N)

Delete from the middle of a linked list

  • Traverse to the element which is just before the element to be deleted
  • Change the next pointers to exclude the node from the list
  • Time Complexity: O(N)

When Deletion in a Singly Linked List takes O(1) time?

There are 3 cases when deleting in a singly linked list is O(1), because we do not have to traverse the list.

When we have the pointer pointing to the node which needs to be deleted, let's call it prev. So, we have to do,

  • curr = prev->next
  • prev->next = curr->next
  • curr->next = NULL
  • delete curr

Since curr is the node that is deleted from the singly linked list.

When we have to delete the first/start/head node, let's call it head. So, we have to do,

  • head = head->next

Hence head is pointing to the next node.

When we have to delete the last/end/tail node, let's call it tail. So, we have to do,

  • tail = NULL

This is only possible if we maintain an extra pointer except the head i.e., tail for referencing the last node of the linked list. But we can do this only once because after doing this we lose the reference of the last node and there is no way to find the reference of the new last node in O(1) in a singly linked list. In a doubly linked list, it is possible as it contains the previous pointer.

👁 Complexities of deletion from Linked List
Complexities of deletion from Linked List

Below is the implementation of different deletion operations in a singly linked list:


Output
Original list: 10 20 30 40 
List after deleting the starting node: 20 30 40 
List after deleting the ending node: 20 30 
List after deleting the given node: 20 
Comment