138. Copy List with Random Pointer

  • Difficulty: Medium

  • Topics: Hash Table, Linked List

  • Similar Questions:

Problem:

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

Return a deep copy of the list.

 

Example 1:

Input:
{"$id":"1","next":{"$id":"2","next":null,"random":{"$ref":"2"},"val":2},"random":{"$ref":"2"},"val":1}

Explanation:
Node 1's value is 1, both of its next and random pointer points to Node 2.
Node 2's value is 2, its next pointer points to null and its random pointer points to itself.

 

Note:

  1. You must return the copy of the given head as a reference to the cloned list.

Solutions:

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

    Node() {}

    Node(int _val, Node* _next, Node* _random) {
        val = _val;
        next = _next;
        random = _random;
    }
};
*/
class Solution {
public:
    Node* copyRandomList(Node* head) {
        copyNodes(head);
        copyRandomPointers(head);
        return partition(head);
    }

    void copyNodes(Node* head) {
        while (head) {
            Node* nodeCopy = new Node(head->val, head->next, nullptr);
            head->next = nodeCopy;
            head = nodeCopy->next;
        }
    }

    void copyRandomPointers(Node* head) {
        while (head) {
            head->next->random = head->random == nullptr ? nullptr : head->random->next; // pay attention to null random pointer
            head = head->next->next;
        }
    }

    Node* partition(Node* head) {
        Node* dummy = new Node(0, nullptr, nullptr);
        Node* tail = dummy;
        while (head) {
            tail->next = head->next;
            tail = tail->next;
            head->next = head->next->next;
            head = head->next;
        }

        return dummy->next;
    }
};

results matching ""

    No results matching ""