Why is deleting in a Singly Linked List O(1)?
Last Updated :
09 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:
- Deletion from the beginning of the linked list
- Deletion from the end of the linked list
- 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.
First case: 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.
Second case: When we have to delete the first/start/head node, let's call it head. So, we have to do,
Hence head is pointing to the next node.
Third case: When we have to delete the last/end/tail node, let's call it tail. So, we have to do,
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
Below is the implementation of different deletion operations in a singly linked list:
C++
// C++ code to implement the approach
#include <iostream>
using namespace std;
// Creating a class Node
class Node {
public:
int data;
Node* next;
Node(int d)
{
data = d;
next = NULL;
}
};
// Function to delete the start node
void deleteFromStart(Node*& head)
{
head = head->next;
}
// Function to delete the middle node
void deleteGivenNode(Node*& head, int val)
{
if (head->data == val) {
head = head->next;
}
Node *temp = head, *prev = NULL;
while (temp->data != val) {
prev = temp;
temp = temp->next;
}
prev->next = temp->next;
}
// Function to delete the last node
void deleteFromEnd(Node* head)
{
Node* temp = head;
while (temp->next->next != NULL) {
temp = temp->next;
}
temp->next = NULL;
}
// Function to print the list
void printList(Node* head)
{
Node* temp = head;
while (temp != NULL) {
cout << temp->data << " ";
temp = temp->next;
}
cout << endl;
}
// Driver Code
int main()
{
Node* head = new Node(10);
Node* second = new Node(20);
Node* third = new Node(30);
Node* fourth = new Node(40);
head->next = second;
second->next = third;
third->next = fourth;
cout << "Original list: ";
printList(head);
deleteFromStart(head);
cout << "List after deleting the starting node: ";
printList(head);
deleteFromEnd(head);
cout << "List after deleting the ending node: ";
printList(head);
deleteGivenNode(head, 30);
cout << "List after deleting the given node: ";
printList(head);
}
Java
// Java code to implement the approach
// Creating a class Node
class Node {
public int data;
public Node next;
public Node(int d) {
data = d;
next = null;
}
}
public class Main {
// Function to delete the start node
public static Node deleteFromStart(Node head) {
head = head.next;
return head;
}
// Function to delete the given node
public static void deleteGivenNode(Node head, int val) {
if (head.data == val) {
head = head.next;
}
Node temp = head, prev = null;
while (temp.data != val) {
prev = temp;
temp = temp.next;
}
prev.next = temp.next;
}
// Function to delete the last node
public static void deleteFromEnd(Node head) {
Node temp = head;
while (temp.next.next != null) {
temp = temp.next;
}
temp.next = null;
}
// Function to print the list
public static void printList(Node head) {
Node temp = head;
while (temp != null) {
System.out.print(temp.data + " ");
temp = temp.next;
}
System.out.println();
}
// Driver Code
public static void main(String[] args) {
Node head = new Node(10);
Node second = new Node(20);
Node third = new Node(30);
Node fourth = new Node(40);
head.next = second;
second.next = third;
third.next = fourth;
System.out.print("Original list: ");
printList(head);
head = deleteFromStart(head);
System.out.print("List after deleting the starting node: ");
printList(head);
deleteFromEnd(head);
System.out.print("List after deleting the ending node: ");
printList(head);
deleteGivenNode(head, 30);
System.out.print("List after deleting the given node: ");
printList(head);
}
}
Python3
# Python code to implement the approach
# Creating a class Node
class Node:
def __init__(self,val):
self.val = val
self.next = None
# Function to delete the start node
def deleteFromStart(head):
if head != None:
head = head.next
return head
# Function to delete the middle node
def deleteGivenNode(head,val):
if head.val == val: head = head.next
curr = head
prev = None
while curr and curr.val != val:
prev = curr
curr = curr.next
prev.next = curr.next
# Function to delete the last node
def deleteFromEnd(head):
curr = head
while curr.next and curr.next.next != None:
curr = curr.next
curr.next = None
# Prints the stack
def printList(head):
if head == None:
print('List is Empty')
return
curr = head
while curr != None:
print(curr.val,end = ' ')
curr = curr.next
print()
# Driver code
head = Node(10)
second = Node(20)
third = Node(30)
fourth = Node(40)
head.next = second
second.next = third
third.next = fourth
print("Original list: ")
printList(head)
head = deleteFromStart(head)
print("List after deleting the starting node: " )
printList(head)
deleteFromEnd(head)
print("List after deleting the ending node: " )
printList(head)
deleteGivenNode(head, 30)
print("List after deleting the given node: ")
printList(head)
C#
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
// C# code to implement the approach
// Creating a class Node
class Node {
public int data;
public Node next;
public Node(int d) {
data = d;
next = null;
}
}
class HelloWorld {
// Function to delete the start node
public static Node deleteFromStart(Node head) {
head = head.next;
return head;
}
// Function to delete the given node
public static void deleteGivenNode(Node head, int val) {
if (head.data == val) {
head = head.next;
}
Node temp = head, prev = null;
while (temp.data != val) {
prev = temp;
temp = temp.next;
}
prev.next = temp.next;
}
// Function to delete the last node
public static void deleteFromEnd(Node head) {
Node temp = head;
while (temp.next.next != null) {
temp = temp.next;
}
temp.next = null;
}
// Function to print the list
public static void printList(Node head) {
Node temp = head;
while (temp != null) {
Console.Write(temp.data + " ");
temp = temp.next;
}
Console.WriteLine();
}
static void Main() {
Node head = new Node(10);
Node second = new Node(20);
Node third = new Node(30);
Node fourth = new Node(40);
head.next = second;
second.next = third;
third.next = fourth;
Console.Write("Original list: ");
printList(head);
head = deleteFromStart(head);
Console.Write("List after deleting the starting node: ");
printList(head);
deleteFromEnd(head);
Console.Write("List after deleting the ending node: ");
printList(head);
deleteGivenNode(head, 30);
Console.Write("List after deleting the given node: ");
printList(head);
}
}
// The code is contributed by Nidhi goel
JavaScript
<script>
// javascript code to implement the approach
// Creating a class Node
class Node {
constructor(val){
this.data = val;
this.next = null;
}
}
// Function to delete the start node
function deleteFromStart(head)
{
head = head.next;
return head;
}
// Function to delete the middle node
function deleteGivenNode(head, val)
{
if (head.data == val) {
head = head.next;
}
let temp = head;
let prev = null;
while (temp.data != val) {
prev = temp;
temp = temp.next;
}
prev.next = temp.next;
}
// Function to delete the last node
function deleteFromEnd(head)
{
let temp = head;
while (temp.next.next != null) {
temp = temp.next;
}
temp.next = null;
}
// Function to print the list
function printList(head)
{
let temp = head;
while (temp != null) {
document.write(temp.data + " ");
temp = temp.next;
}
document.write("\n");
}
// Driver Code
let head = new Node(10);
let second = new Node(20);
let third = new Node(30);
let fourth = new Node(40);
head.next = second;
second.next = third;
third.next = fourth;
document.write("Original list: ");
printList(head);
head = deleteFromStart(head);
document.write("List after deleting the starting node: ");
printList(head);
deleteFromEnd(head);
document.write("List after deleting the ending node: ");
printList(head);
deleteGivenNode(head, 30);
document.write("List after deleting the given node: ");
printList(head);
// The code is contributed by Nidhi goel.
</script>
OutputOriginal 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
Similar Reads
Delete a Node in a Singly Linked List with Only a Pointer
Given only a pointer to a node to be deleted in a singly linked list. The task is to delete that node from the list. Note: The given pointer does not point to the last node of the linked list.Examples:Input: LinkedList: 1->2->3->4->5, delete_ptr = 2Output: LinkedList: 1->3->4->5
6 min read
Probability of finding an element K in a Singly Linked List
Given a Singly Linked List of size N and another key K, we have to find the probability that the key K is present in the Singly Linked List.Examples: Input: Linked list = 2 -> 3 -> 3 -> 3 -> 4 -> 2, Key = 5 Output: 0 Explanation: Since the value of Key is 5 which is not present in Lis
9 min read
Singly Linked List definition & meaning DSA
A singly linked list is a special type of linked list in which each node has only one link that points to the next node in the linked list.Singly linked listCharacteristics of a Singly Linked List:Each node holds a single value and a reference to the next node in the list.The list has a head, which
1 min read
Deletion in Linked List
Deleting a node in a Linked List is an important operation and can be done in three main ways: removing the first node, removing a node in the middle, or removing the last node.In this article, we will explore deletion operation on Linked List for all the above scenarios. Types of Deletion in Linked
3 min read
Delete a Linked List node at a given position
Given a singly linked list and a position (1-based indexing), the task is to delete a linked list node at the given position.Note: Position will be valid (i.e, 1 <= position <= linked list length)Example: Input: position = 2, Linked List = 8->2->3->1->7Output: Linked List = 8->3
8 min read
Delete a linked list using recursion
Given a linked list, the task is to delete the linked list using recursion.Examples: Input: Linked List = 1 -> 2 -> 3 -> 4 -> 5 -> NULL Output: NULLExplanation: Linked List is DeletedInput: Linked List = 1 -> 12 -> 1 -> 4 -> 1 -> NULL Output: NULLExplanation: Linked Lis
5 min read
Delete all Prime Nodes from a Singly Linked List
Given a singly linked list containing N nodes, the task is to delete all nodes from the list which are prime.Examples: Input : List = 15 -> 16 -> 6 -> 7 -> 17 Output : Final List = 15 -> 16 -> 6Input : List = 15 -> 3 -> 4 -> 2 -> 9 Output :Final List = 15 ->4 -> 9
12 min read
Write a function to delete a Linked List
Given a linked list, the task is to delete the linked list completely.Examples:Input: head: 1 -> 2 -> 3 -> 4 -> 5 -> NULLOutput: NULLExplanation: Linked List is Deleted.Input: head: 1 -> 12 -> 1 -> 4 -> 1 -> NULLOutput: NULLExplanation: Linked List is Deleted.Table of C
9 min read
Deletion at end (Removal of last node) in a Linked List
Given a linked list, the task is to delete the last node of the given linked list.Examples:Â Â Input: 1 -> 2 -> 3 -> 4 -> 5 -> NULLOutput: 1 -> 2 -> 3 -> 4 -> NULL Explanation: The last node of the linked list is 5, so 5 is deleted. Input: 3 -> 12 -> 15-> NULLOutput
8 min read
Program to delete all even nodes from a Singly Linked List
Given a singly linked list containing N nodes, the task is to delete all the even nodes from the list. Examples: Input: LL = 1 -> 4 -> 3 -> 18 -> 19 Output: 1 -> 3 -> 19Input: LL = 5 -> 3 -> 6 -> 8 -> 4 -> 1 -> 2 -> 9 Output: 5 -> 3 -> 1 -> 9 Approach
15+ min read