Copy List with Random Pointer II in C++ (O(n) Time, O(1) Space)


A linked list of length n is given such that each node contains an additional random pointer, which could point to any node in the list, or null.

Construct a deep copy of the list. The deep copy should consist of exactly n brand new nodes, where each new node has its value set to the value of its corresponding original node. Both the next and random pointer of the new nodes should point to new nodes in the copied list such that the pointers in the original list and copied list represent the same list state. None of the pointers in the new list should point to nodes in the original list.

For example, if there are two nodes X and Y in the original list, where X.random --> Y, then for the corresponding two nodes x and y in the copied list, x.random --> y.

Return the head of the copied linked list.

The linked list is represented in the input/output as a list of n nodes. Each node is represented as a pair of [val, random_index] where:

  • val: an integer representing Node.val
  • random_index: the index of the node (range from 0 to n-1) that the random pointer points to, or null if it does not point to any node.

Your code will only be given the head of the original linked list.

 

Example 1:

Input: head = [[7,null],[13,0],[11,4],[10,2],[1,0]]
Output: [[7,null],[13,0],[11,4],[10,2],[1,0]]

Example 2:

Input: head = [[1,1],[2,1]]
Output: [[1,1],[2,1]]

Example 3:

Input: head = [[3,null],[3,0],[3,null]]
Output: [[3,null],[3,0],[3,null]]

Example 4:

Input: head = []
Output: []
Explanation: The given linked list is empty (null pointer), so return null.

 

Constraints:

  • 0 <= n <= 1000
  • -10000 <= Node.val <= 10000
  • Node.random is null or is pointing to some node in the linked list.

Note:

Your algorithm should run in O(n) time and use O(1) extra space.


Understanding the Problem

The core challenge of this problem is to create a deep copy of a linked list where each node has an additional random pointer. The deep copy should be a completely new list with no shared nodes with the original list. This problem is significant in scenarios where data structures need to be duplicated without affecting the original structure, such as in undo operations, cloning complex objects, etc.

Approach

To solve this problem, we can use a three-step approach:

  1. Interweaving the original list with copied nodes: For each node in the original list, create a new node and insert it right after the original node. This way, the new nodes are interleaved with the original nodes.
  2. Assigning random pointers: Iterate through the interleaved list and assign the random pointers for the new nodes.
  3. Restoring the original list and extracting the copied list: Separate the interleaved list into the original list and the copied list.

Algorithm

Let's break down the algorithm step-by-step:

  1. Iterate through the original list and create new nodes. Insert each new node right after its corresponding original node.
  2. Iterate through the interleaved list and set the random pointers for the new nodes.
  3. Separate the interleaved list into the original list and the copied list.

Code Implementation

// Definition for a Node.
class Node {
public:
    int val;
    Node* next;
    Node* random;

    Node(int _val) {
        val = _val;
        next = nullptr;
        random = nullptr;
    }
};

class Solution {
public:
    Node* copyRandomList(Node* head) {
        if (!head) return nullptr;

        // Step 1: Create new nodes and interleave them with original nodes
        Node* curr = head;
        while (curr) {
            Node* newNode = new Node(curr->val);
            newNode->next = curr->next;
            curr->next = newNode;
            curr = newNode->next;
        }

        // Step 2: Assign random pointers for the new nodes
        curr = head;
        while (curr) {
            if (curr->random) {
                curr->next->random = curr->random->next;
            }
            curr = curr->next->next;
        }

        // Step 3: Separate the interleaved list into original and copied lists
        Node* newHead = head->next;
        curr = head;
        while (curr) {
            Node* temp = curr->next;
            curr->next = temp->next;
            if (temp->next) {
                temp->next = temp->next->next;
            }
            curr = curr->next;
        }

        return newHead;
    }
};

Complexity Analysis

The time complexity of this approach is O(n) because we iterate through the list a constant number of times. The space complexity is O(1) extra space because we are not using any additional data structures that grow with the input size.

Edge Cases

Some potential edge cases include:

Each of these cases is handled by the algorithm as it does not make any assumptions about the structure of the random pointers.

Testing

To test the solution comprehensively, consider the following test cases:

Using a variety of test cases ensures that the solution handles all possible scenarios.

Thinking and Problem-Solving Tips

When approaching such problems, consider the following tips:

Conclusion

In this blog post, we discussed how to create a deep copy of a linked list with random pointers in C++. We covered the problem definition, approach, algorithm, code implementation, complexity analysis, edge cases, and testing. Understanding and solving such problems is crucial for developing strong problem-solving skills in computer science.

Additional Resources

For further reading and practice, consider the following resources: