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

138. Copy List with Random Pointer (Graph, Map; DFS)

时间:2015-10-04 17:10:15      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

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.

 
 
struct RandomListNode {
     int label;
     RandomListNode *next, *random;
     RandomListNode(int x) : label(x), next(NULL), random(NULL) {}
 };

class Solution {
public:
    RandomListNode *copyRandomList(RandomListNode *head) {
        if(!head) return NULL;
        map<RandomListNode *, RandomListNode *> flag;
        RandomListNode *root = copyNode(head, flag);
        return root;
    }

    RandomListNode * copyNode(RandomListNode *source, map<RandomListNode *, RandomListNode *> &flag)
    {
        if(flag.find(source)!=flag.end()) 
        {
            return flag[source];
        }

        RandomListNode *target = new RandomListNode (source->label);
        flag[source]=target;
        if(source->next)
            target->next = copyNode (source->next,flag);
        if(source->random)
            target->random = copyNode (source->random,flag);
        return target;
    }
};

 

138. Copy List with Random Pointer (Graph, Map; DFS)

标签:

原文地址:http://www.cnblogs.com/qionglouyuyu/p/4854707.html

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