【剑指offer】复杂链表的复制

复杂链表的复制

题目描述


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

思路分析


问题的关键在于random节点的拷贝,因为并不确定某个节点对应的random节点是否被创建。
示意图

解决思路


双指针
将拷贝后的每个节点插入到原始链表相应节点之后,这样连接random指针的时候,原始链表random指针后一个元素就是原始链表要找的随机节点,而该节点后一个就是它拷贝出来的新节点。(妙!)

if(cur->random == NULL)
	clone->random = NULL;
else
	clone->random = cur->random-.next;

在完成拷贝链表随机指针的链接后,根据奇偶序列连接新的链表,只需要每次越过相邻节点连接就可以。

/*
struct RandomListNode {
    int label;
    struct RandomListNode *next, *random;
    RandomListNode(int x) :
            label(x), next(NULL), random(NULL) {
    }
};
*/
class Solution {
public:
    RandomListNode* Clone(RandomListNode* pHead) {
        RandomListNode* cur = pHead;
        if(pHead == NULL) return NULL;
        while(cur)
        {
            RandomListNode *clone = new RandomListNode(cur->label);
            clone->next = cur->next;
            cur->next = clone;
           // cur = cur->next;
            cur = clone->next;
        }
        
        cur = pHead;
        RandomListNode* clone = pHead->next;
        RandomListNode* res = pHead->next;
        while(cur)
        {
            if(cur->random == NULL)
                clone->random = NULL;
            else
            {
                clone->random = cur->random->next;
            }
            
            cur = cur->next->next;
            
            //check the end
            if(clone->next != NULL)
            {
                clone = clone->next->next;
            }
            
        }
        
        cur = pHead;
        clone = pHead->next;
        //seperation
        while(cur)
        {
            cur->next = cur->next->next;
            cur = cur->next;
            
            if(clone->next != NULL)
            {
                clone->next = clone->next->next;
                clone = clone->next;
            }
            
        }
        
        return res;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值