Python Program For Deleting A Node In A Doubly Linked List Last Updated : 18 May, 2022 Comments Improve Suggest changes Like Article Like Report Pre-requisite: Doubly Link List Set 1| Introduction and Insertion Write a function to delete a given node in a doubly-linked list. Original Doubly Linked List Recommended: Please solve it on "PRACTICE" first, before moving on to the solution. Approach: The deletion of a node in a doubly-linked list can be divided into three main categories: After the deletion of the head node. After the deletion of the middle node. After the deletion of the last node. All three mentioned cases can be handled in two steps if the pointer of the node to be deleted and the head pointer is known. If the node to be deleted is the head node then make the next node as head.If a node is deleted, connect the next and previous node of the deleted node. Algorithm Let the node to be deleted be del.If node to be deleted is head node, then change the head pointer to next current head.if headnode == del then headnode = del.nextNodeSet next of previous to del, if previous to del exists.if del.nextNode != none del.nextNode.previousNode = del.previousNode Set prev of next to del, if next to del exists.if del.previousNode != none del.previousNode.nextNode = del.next Python # Program to delete a node in a # doubly-linked list # For Garbage collection import gc # A node of the doubly linked list class Node: # Constructor to create a new node def __init__(self, data): self.data = data self.next = None self.prev = None class DoublyLinkedList: # Constructor for empty Doubly # Linked List def __init__(self): self.head = None # Function to delete a node in a Doubly # Linked List. head_ref --> pointer to # head node pointer. dele --> pointer to # node to be deleted. def deleteNode(self, dele): # Base Case if self.head is None or dele is None: return # If node to be deleted is head node if self.head == dele: self.head = dele.next # Change next only if node to be # deleted is NOT the last node if dele.next is not None: dele.next.prev = dele.prev # Change prev only if node to be # deleted is NOT the first node if dele.prev is not None: dele.prev.next = dele.next # Finally, free the memory occupied # by dele # Call python garbage collector gc.collect() # Given a reference to the head of a # list and an integer, inserts a new # node on the front of list def push(self, new_data): # 1. Allocates node # 2. Put the data in it new_node = Node(new_data) # 3. Make next of new node as head # and previous as None (already None) new_node.next = self.head # 4. Change prev of head node to # new_node if self.head is not None: self.head.prev = new_node # 5. Move the head to point to the # new node self.head = new_node def printList(self, node): while(node is not None): print node.data, node = node.next # Driver code # Start with empty list dll = DoublyLinkedList() # Let us create the doubly linked list # 10<->8<->4<->2 dll.push(2); dll.push(4); dll.push(8); dll.push(10); print "Original Linked List", dll.printList(dll.head) # Delete nodes from doubly linked list dll.deleteNode(dll.head) dll.deleteNode(dll.head.next) dll.deleteNode(dll.head.next) # Modified linked list will be NULL<-8->NULL print "Modified Linked List", dll.printList(dll.head) # This code is contributed by Nikhil Kumar Singh(nickzuck_007) Output: Original Linked list 10 8 4 2 Modified Linked list 8 Complexity Analysis: Time Complexity: O(1). Since traversal of the linked list is not required so the time complexity is constant.Space Complexity: O(1). As no extra space is required, so the space complexity is constant. Please refer complete article on Delete a node in a Doubly Linked List for more details! Comment More infoAdvertise with us Next Article Python Program For Deleting A Node In A Doubly Linked List kartik Follow Improve Article Tags : Linked List Python Programs DSA Amazon doubly linked list Python-DSA +2 More Practice Tags : AmazonLinked List Similar Reads Python Program for Deleting a Node in a Linked List We have discussed Linked List Introduction and Linked List Insertion in previous posts on a singly linked list.Let us formulate the problem statement to understand the deletion process. Given a 'key', delete the first occurrence of this key in the linked list. Iterative Method:To delete a node from 3 min read Python Program For Deleting A Linked List Node At A Given Position Given a singly linked list and a position, delete a linked list node at the given position. Example: Input: position = 1, Linked List = 8->2->3->1->7 Output: Linked List = 8->3->1->7 Input: position = 0, Linked List = 8->2->3->1->7 Output: Linked List = 2->3->1 3 min read Python Program For Deleting A Given Node In Linked List Under Given Constraints Given a Singly Linked List, write a function to delete a given node. Your function must follow following constraints: 1) It must accept a pointer to the start node as the first parameter and node to be deleted as the second parameter i.e., a pointer to head node is not global. 2) It should not retur 3 min read Python Program For Deleting Last Occurrence Of An Item From Linked List Using pointers, loop through the whole list and keep track of the node prior to the node containing the last occurrence key using a special pointer. After this just store the next of next of the special pointer, into to next special pointer to remove the required node from the linked list. Python3 # 6 min read Python Program For Reversing A Doubly Linked List Given a Doubly Linked List, the task is to reverse the given Doubly Linked List. See below diagrams for example. (a) Original Doubly Linked List (b) Reversed Doubly Linked List Here is a simple method for reversing a Doubly Linked List. All we need to do is swap prev and next pointers for all nodes 4 min read Python Program For Merge Sort For Doubly Linked List Given a doubly linked list, write a function to sort the doubly linked list in increasing order using merge sort.For example, the following doubly linked list should be changed to 24810 Recommended: Please solve it on "PRACTICE" first, before moving on to the solution. Merge sort for singly linked l 3 min read Python Program For Writing A Function To Delete A Linked List Algorithm For Python:In Python, automatic garbage collection happens, so deleting a linked list is easy. Just need to change head to null. Implementation: Python3 # Python3 program to delete all # the nodes of singly linked list # Node class class Node: # Function to initialize the # node object de 2 min read Python Program To Delete Alternate Nodes Of A Linked List Given a Singly Linked List, starting from the second node delete all alternate nodes of it. For example, if the given linked list is 1->2->3->4->5 then your function should convert it to 1->3->5, and if the given linked list is 1->2->3->4 then convert it to 1->3. Recomm 3 min read Python Program To Delete N Nodes After M Nodes Of A Linked List Given a linked list and two integers M and N. Traverse the linked list such that you retain M nodes then delete next N nodes, continue the same till end of the linked list.Difficulty Level: Rookie Examples: Input: M = 2, N = 2 Linked List: 1->2->3->4->5->6->7->8 Output: Linked L 3 min read Python Program For Making Middle Node Head In A Linked List Given a singly linked list, find middle of the linked list and set middle node of the linked list at beginning of the linked list. Examples: Input: 1 2 3 4 5 Output: 3 1 2 4 5 Input: 1 2 3 4 5 6 Output: 4 1 2 3 5 6 The idea is to first find middle of a linked list using two pointers, first one moves 3 min read Like