Akarshan's | Blog

Every Developers Journey is unique. Here's mine.

Leetcode - 82. Remove Duplicates from Sorted List II

Akarshan MishraAkarshan Mishra

Recursion

Linked List

Leetcode - 82. Remove Duplicates from Sorted List II
August 3, 2023
A detailed explanation and solution to LeetCode problem 82: Remove Duplicates from Sorted List II. Learn how to solve this linked list problem using recursion.

The Problem:

In this problem, we are given a sorted linked list and we have to remove duplicate nodes and return the new Linked List without breaking the sorted order. This problem is pretty similar to the last problem we did, the only difference being that this time we have to remove all occurrences of the repeated node.

For example, in the last problem when given 1 -> 1 -> 2 -> 3 we would return 1 -> 2 -> 3 but in this problem, we would return 2 -> 3.

Before we begin trying to figure out a solution for this problem, let’s first revisit an important concepts Linked List and Recursion.

Understanding Recursion:

Recursion is essentially a function calling itself. It is frequently used to solve problems that can be divided into smaller, similar sub-problems and can be very useful in dynamic programming. To understand recursion, it can be helpful to break it down into 3 parts:

  1. Base Condition: This condition prevents the recursive function from calling itself infinitely.
  2. Recursive Call: This is responsible for calling the recursive function itself.
  3. Small Calculation: This step, which can come before or after the Recursive Call, is responsible for performing some calculation that we need for the recursive function or for returning some result after a recursive call has been completed.
recursion Image

A recursive tree is a visual representation of the recursive calls made by a function. It can be very helpful in understanding how recursion works and in analyzing the time and space complexity of recursive algorithms.

Understanding Linked List:

A linked list is a linear data structure that consists of a sequence of nodes, each containing data and a reference to the next node in the list. It is often used as an alternative to arrays, as it can be more efficient in certain operations such as insertion and deletion.

To understand linked lists, it can be helpful to break it down into 3 parts:

  1. Nodes: Each node in a linked list contains some data and a reference to the next node in the list.
  2. Head: The head of a linked list is the first node in the list. It is used as the starting point for many operations on the list.
  3. Traversal: Traversing a linked list involves starting at the head and following the references from one node to the next until the desired node is reached or the end of the list is reached.
Linked List

Linked lists can be very useful in solving problems that involve dynamic data structures, as they allow for efficient insertion and deletion of elements. They can also be used in combination with other data structures, such as stacks and queues, to solve more complex problems.

Intuition & Algorithm:

With an understanding of how recursion and linked lists work, let’s try to break down the problem. We don’t have to worry about making our own linked list data structure as it is given. So, we will begin by figuring out the base condition, which in this case would be when the recursion reaches the end of the linked list (node == None) or when the next node is None (node.next == None).

We can store the current node value and as long as that value and the next node value differ, we can call the function recursively to get the next node. If they match at some point, then we can move the current node forward till node's value does not match up with the value we stored before, this will ensure that we get rid of all nodes with same values without leaving anyone of them. When we get a node whose value is different, we can call the recursive function on that node itself.

This ensures that we always have a sorted linked list with no duplicates. Let’s visualize the algorithm below.

LeetCode - 82 Main Image

Summary of Solution

Use recursion to remove all occurrences of duplicate nodes from a sorted linked list. Store the current node value and call the function recursively to get the next node. If the values match, move the current node forward until its value differs from the stored value. Call the recursive function on that node. Return the new head of the list.

Code

This can be translated to code in the following way:

Solution.py

lang: python

# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def deleteDuplicates(self, head: Optional[ListNode]) -> Optional[ListNode]:
if head == None or head.next == None:
return head
currVal = head.val
if currVal != head.next.val:
head.next = self.deleteDuplicates(head.next) # preserve the non repeating head
else:
while head and currVal == head.val:
head = head.next
return self.deleteDuplicates(head)
return head # returned when else block does not return anything
  • Time Complexity O(n)
  • Space Complexity O(n)

The time complexity of this solution is O(n) This is because the function needs to traverse the linked lists to delete the duplicate nodes. Time taken for this operation would be proportional to the size of the linked list.

Space complexity is O(n) because of recursion call stack.

This approach is simple and efficient, making it a good solution to this problem.

I hope you enjoyed this post. Stay tuned for daily LeetCode blog posts!

Latest Posts

Leetcode - 21. Merge Two Sorted Lists
Akarshan MishraAkarshan Mishra

Recursion

Linked List

Leetcode - 21. Merge Two Sorted Lists

August 14, 2023

A detailed explanation and solution to LeetCode problem 21: Merge Two Sorted Lists. Learn how to solve this linked list problem using recursion.

Leetcode - 138. Copy List with Random Pointer
Akarshan MishraAkarshan Mishra

Recursion

Linked List

Leetcode - 138. Copy List with Random Pointer

August 12, 2023

A detailed explanation and solution to LeetCode problem 138: Copy List with Random Pointer. Learn how to solve this linked list problem using recursion.