码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 138 Copy List with Random Pointer

时间:2018-11-15 15:37:21      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:script   esc   etc   ext   int   题目   指针   amp   head   

LeetCode 138. Copy List with Random Pointer

又是copy 指针的题目。

这个和上一道题目有个坑点,函数中的参数要加&地址符。

class Solution {
public:
    RandomListNode* ans;
    map<int,RandomListNode*> m;
    RandomListNode *copyRandomList(RandomListNode *head) {
        
       if(head==NULL)
           return ans;
       
        dfs(ans,head);
        return ans;
    }
    
    void dfs(RandomListNode* &ans,RandomListNode *head)
    {
        if(head==NULL) return;
        if(m[head->label]==NULL)
        {
             m[head->label] = new RandomListNode(head->label);
        }
        ans = new RandomListNode(head->label);
        if(head->random==NULL)
            ans->random = NULL;
        else
        {
            if(m[head->random->label]==NULL)
                m[head->random->label] = new RandomListNode(head->random->label);
            ans->random = m[head->random->label];
        }

        dfs(ans->next,head->next);
    }
};

LeetCode 138 Copy List with Random Pointer

标签:script   esc   etc   ext   int   题目   指针   amp   head   

原文地址:https://www.cnblogs.com/dacc123/p/9963356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!