leetcode 138. 复制带随机指针的链表

Posted joelwang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 138. 复制带随机指针的链表相关的知识,希望对你有一定的参考价值。

技术图片

C++采用哈希表,时间复杂度O(n),空间复杂度O(n)空间复杂度应该可以降低;

/*
// 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) 
        //建立哈希表遍历两次,一次复制next并填充哈希表,第二次复制random
        unordered_map<Node*,Node*> h;
        Node *pre, *cur, *root;
        pre=root=new Node(-1,NULL,NULL);
        cur=head;
        while(cur!=NULL)
            int v=cur->val;
            Node *p=new Node(v,NULL,NULL);
            h[cur]=p;
            pre->next=p;
            pre=p;
            cur=cur->next;
        
        cur=root->next;
        pre=head;
        h[NULL]=NULL;
        while(cur!=NULL)
            cur->random=h[pre->random];
            cur=cur->next;
            pre=pre->next;
        
        return root->next;
    
;

 

以上是关于leetcode 138. 复制带随机指针的链表的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 138. 复制带随机指针的链表

LeetCode Algorithm 138. 复制带随机指针的链表

LeetCode Algorithm 138. 复制带随机指针的链表

[LeetCode]138复制带随机指针的链表

LeetCode Java刷题笔记—138. 复制带随机指针的链表

Leetcode No.138 复制带随机指针的链表(回溯)