LeetCode – Refresh – Copy List with Random Pointer

Two methods for doing this problem:

1. With extra memory, using hashtable:

I made a mistake for mapping[runner->random] = mapping[runner]->random. Then it will erase original one and not correctly copied.

 1 /**
 2  * Definition for singly-linked list with a random pointer.
 3  * struct RandomListNode {
 4  *     int label;
 5  *     RandomListNode *next, *random;
 6  *     RandomListNode(int x) : label(x), next(NULL), random(NULL) {}
 7  * };
 8  */
 9 class Solution {
10 public:
11     RandomListNode *copyRandomList(RandomListNode *head) {
12         if (!head) return NULL;
13         RandomListNode *result = new RandomListNode(head->label);
14         unordered_map<RandomListNode *, RandomListNode *> mapping;
15         mapping[head] = result;
16         RandomListNode *runner = head;
17         while (runner->next) {
18             if (mapping.find(runner->next) == mapping.end()) {
19                 RandomListNode *newNode = new RandomListNode(runner->next->label);
20                 mapping[runner->next] = newNode;
21                 mapping[runner]->next = newNode;
22             }
23             runner = runner->next;
24         }
25         runner = head;
26         while (runner) {
27             mapping[runner]->random = mapping[runner->random];
28             runner = runner->next;
29         }
30         return result;
31     }
32 };

2. Merge two list into one and then split them:

A stupid mistake:

when last split two list, I use

while (head->next)

It will cause problem. Because when your head go to the end, the head is NULL, then head->next is an illegal argument.

 1 /**
 2  * Definition for singly-linked list with a random pointer.
 3  * struct RandomListNode {
 4  *     int label;
 5  *     RandomListNode *next, *random;
 6  *     RandomListNode(int x) : label(x), next(NULL), random(NULL) {}
 7  * };
 8  */
 9 class Solution {
10 public:
11     RandomListNode *copyRandomList(RandomListNode *head) {
12         if (!head) return NULL;
13         RandomListNode *runner = head;
14         RandomListNode *result = new RandomListNode(0);
15         while (runner) {
16             RandomListNode *newNode = new RandomListNode(runner->label);
17             newNode->next = runner->next;
18             runner->next = newNode;
19             runner = runner->next->next;
20         }
21         runner = head;
22         while (runner) {
23             if (runner->random != NULL) {
24                 runner->next->random = runner->random->next;
25             }
26             runner = runner->next->next;
27         }
28         runner = result;
29         while (head) {
30             runner->next = head->next;
31             head->next = head->next->next;
32             head = head->next;
33             runner = runner->next;
34         }
35         return result->next;
36     }
37 };
时间: 2024-10-12 17:28:08

LeetCode – Refresh – Copy List with Random Pointer的相关文章

【LeetCode】Copy List with Random Pointer

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. 思路:第一遍正常复制链表,同时用哈希表保存链表中原始节点和新节点的对应关系,第二遍遍历链表的时候,再复制随机域. 这是一种典型的空间换时间的做法,n个节点,需要大小为O(n

leetcode -day8 Copy List with Random Pointer &amp; Single Number I II

五一中间断了几天,开始继续... 1.  Copy List with Random Pointer 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. 分析:剑指offer上的一道题目,分三步进行,首先复制每个链表结点

[LeetCode][JavaScript]Copy List with Random Pointer

Copy List with Random Pointer 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. https://leetcode.com/problems/copy-list-with-random-poin

Java for LeetCode 138 Copy List with Random Pointer

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. 解题思路: 我们在Java for LeetCode 133 Clone Graph题中做过图的复制,本题和图的复制十分类似,JAVA实现如下: public Random

Leetcode 138. Copy List with random pointer

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. 思路:deep copy的意思就是克隆.扫两遍原来的list,第一遍copy node和next.然后再扫第二遍,这是如果pointer.random非空,我们就可以在co

leetcode 【 Copy List with Random Pointer 】 python 实现

题目: 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. 代码:Runtime: 215 ms 1 # Definition for singly-linked list with a random pointer. 2

leetCode(7):Copy list with random pointer

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. /** * Definition for singly-linked list with a random pointer. * struct RandomListNode

【leetcode】Copy List with Random Pointer (hard)

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. 思路: 做过,先复制一遍指针,再复制random位置,再拆分两个链表. #include <iostream> #include <vector> #incl

【LeetCode】Copy List with Random Pointer 解题报告

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. /** * Definition for singly-linked list with a random pointer. * class RandomListNode