`

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.

题目中给定了一个链表,链表中的节点类有三个成员,label,next,random,其中label和next和普通链表中的一样,多了一个random,random指针指向链表中的任意一个元素或者指向空,要求我们复制这个链表。这道题目和Clone Graph很类似。我们都需要借助一个哈希表来存储新建节点和老节点之间的对应关系,然后在对链表扫描一遍,如果当前节点的random指针不为空,那么这个节点对应的copy节点的random要指向相应的节点,这些对应的关系都是在哈希表找到的。代码如下:
/**
 * Definition for singly-linked list with a random pointer.
 * class RandomListNode {
 *     int label;
 *     RandomListNode next, random;
 *     RandomListNode(int x) { this.label = x; }
 * };
 */
public class Solution {
    public RandomListNode copyRandomList(RandomListNode head) {
        HashMap<RandomListNode, RandomListNode> hm = new HashMap<RandomListNode, RandomListNode>();
        if(head == null) return head;
        RandomListNode copy = new RandomListNode(head.label);
        hm.put(head, copy);
        RandomListNode node = copy;
        RandomListNode helper = head;
        while(head.next != null) {
            copy.next = new RandomListNode(head.next.label);
            hm.put(head.next, copy.next);
            head = head.next;
            copy = copy.next;
        }
        while(helper != null) {
            if(helper.random != null) {
                hm.get(helper).random = hm.get(helper.random);
            }
            helper = helper.next;
        }
        return node;
    }
}
0
0
分享到:
评论

相关推荐

    python-leetcode题解之138-Copy-List-with-Random-Pointer

    python python_leetcode题解之138_Copy_List_with_Random_Pointer

    js-leetcode题解之138-copy-list-with-random-pointer.js

    javascript js_leetcode题解之138-copy-list-with-random-pointer.js

    dna匹配leetcode-leetcode:leetcode刷题

    dna匹配 leetcode leetcode刷题--C++ 哈希表 Longest Substring ...Pointer 单链表 map Max Points on a Line 斜率 map, int&gt; Fraction to Recurring Decimal map long long 正负号 Repeated DNA S

    leetcode代码200题c++

    7. **Copy List with Random Pointer**:这是一个涉及链表和深度复制的复杂问题。需要理解链表结构,并能创建一个新的链表,同时保留原链表的随机指针。 8. **Word Ladder II**:这是一个词链问题,涉及到广度优先...

    小象学院2020 刷题班 3.2-4.171

    12. **复杂链表的复制**(Copy List with Random Pointer) - 知识点:链表,深度优先搜索 - 解题思路:创建新链表,通过遍历原链表,复制节点并更新随机指针。可以使用DFS或BFS解决。 13. **平衡二叉树**...

    Leetcode题目+解析+思路+答案.pdf

    - **Copy List with Random Pointer**:复制带有随机指针的链表。 8. **数学(Math)**: - **Reverse Integer**:反转一个整数。 9. **字符串(String)**: - **Add Binary**:将两个二进制数相加。 - **...

    leetcode中文版-LeetCode:力码

    leetcode中文版 LeetCode/Cpp ...138.Copy List with Random Pointer LeetCode 142.Linked List Cycle II(solve1) LeetCode 142.Linked List Cycle II(solve2) LeetCode 160.Intersection of Two Linke

    常见算法题答案及解析

    24. Copy List with Random Pointer:复制含有随机指针的链表。 四、二叉树 25. Validate Binary Search Tree:验证二叉搜索树的合法性。 26. Maximum Depth of Binary Tree:二叉树的最大深度。 27. Minimum Depth...

    Leetcode book刷题必备

    24. Copy List with Random Pointer:复制带有随机指针的链表。 【二叉树】 25. Validate Binary Search Tree:验证二叉搜索树。 26. Maximum Depth of Binary Tree:计算二叉树的最大深度。 27. Minimum Depth of ...

    leetcode java

    - 有难度的链表题目则要求合并K个有序链表(Merge K Sorted Lists)、复制带有随机指针的链表(Copy List with Random Pointer)。 **二叉树(Binary Tree)** 二叉树是另一个重要的数据结构。LeetCode的题目涵盖了...

    LeetCode练习答案

    - **复制带随机指针的链表(Copy List with Random Pointer)**: 给定一个链表,每个节点包含一个额外增加的随机指针,该指针可以指向链表中的任何节点或空节点,复制这个链表。 ##### 数学(Math) - **反转整数...

    leetcode-cpp刷题

    - **2.2.10 Copy List with Random Pointer** - 复制一个带随机指针的链表。 - 实现思路:先复制链表中的每个节点,并将其插入到原节点后面,然后再处理随机指针。 #### 五、编写规范 - **单一文件编码**:由于...

    leetcode题库-pyshua:这是一个Python的编码判断系统

    Copy List with Random Pointer, Populating Next Right Pointers in Each Node I && II) PIE (未录入) CC150 (未录入) EPI (未录入) 每一个题库对应problems路径下的一个文件夹,每一个题目对应相应题库下的一个...

    LeetCode最全代码

    * [Linked List](https://github.com/kamyu104/LeetCode#linked-list) * [Stack](https://github.com/kamyu104/LeetCode#stack) * [Queue](https://github.com/kamyu104/LeetCode#queue) * [Heap]...

    Leetcode答案(c++版)

    **1.10 Copy List with Random Pointer (138)** - **问题描述**:给定一个带有随机指针的链表,复制该链表。 - **解题思路**: - 遍历链表,在每个节点后面插入一个新节点。 - 再次遍历链表,更新新节点的随机...

    多线程leetcode-leetcode-java:leetcode上的题解,基于java语言

    多线程 leetcode 前言 每天刷点leetcode,基于java语言实现。...Copy List with Random Pointer Building H2O Fizz Buzz Multithreaded hard Merge k Sorted Lists Reverse Nodes in k-Group Trapping Rain Water

    两两认识leetcode-copy-list-with-random-pointer:使用随机指针复制链表

    random_index:随机指针指向的节点的索引(范围从0到n-1),如果不指向任何节点,则为null。 从过去 : 好吧,我们已经知道如何克隆一个链表。 只需遍历链表,创建新节点并将前一个节点与当前节点连接起来,然后更新...

    LeetCode:LeetCode解决方案

    preorder-traversal链表reorder-list链表linked-list-cycle-ii链表linked-list-cycle动态规划word-break-ii动态规划word-break链表copy-list-with-random-pointer复杂度single-number-ii复杂度single-number动态规划

Global site tag (gtag.js) - Google Analytics