Problem Description
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.
Key Insights
- Each node in the linked list has two pointers: next and random.
- A deep copy requires creating new nodes while preserving the structure of the original list.
- We can use a hash table (dictionary) to map original nodes to their corresponding copied nodes for easy reference.
- The problem can be solved in one pass to create copies and another pass to set the random pointers.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve this problem, we can use a hash table to keep track of the mapping between original nodes and their corresponding copied nodes. The algorithm consists of the following steps:
- Create a copy of each node and store it in the hash table.
- Iterate through the original list to set the next and random pointers of the copied nodes using the mapping in the hash table.
- Return the head of the new copied list.