package jianzhiOffer;
/***
* 输入一个复杂链表(每个节点中有节点值,以及两个指针,一个指向下一个节点,
* 另一个特殊指针指向任意一个节点), 返回结果为复制后复杂链表的head。
* (注意,输出结果中请不要返回参数中的节点引用,否则判题程序会直接返回空)
* @author user
* 思路:假如原链表为A-->B-->C,我们可以先将链表变为A-->A`-->B-->B`-->C-->C`
* 然后将链表进行拆分A`-->B`-->C`即为复制后的链表。这样的做法不需要辅助的空间
* 时间效率也很高
*/
class RandomListNode {
int label;
RandomListNode next = null;
RandomListNode random = null;
RandomListNode(int label) {
this.label = label;
}
}
public class ch25 {
public RandomListNode Clone(RandomListNode pHead) {
if (pHead == null)
return null;
// 原链表为A-->B-->C,将链表变为A-->A`-->B-->B`-->C-->C`
RandomListNode pCur = pHead;
while (pCur != null) {
RandomListNode node = new RandomListNode(pCur.label);
node.next = pCur.next;
pCur.next = node;
pCur = node.next;
}
// 随机结点的复制
pCur = pHead;
while (pCur != null) {
if (pCur.random != null)
pCur.next.random = pCur.random;
pCur = pCur.next.next;
}
//链表的拆分
RandomListNode head = pHead.next;
RandomListNode cur = head;
pCur = pHead;
while(pCur != null) {
pCur.next = pCur.next.next;
if(cur.next != null)
cur.next = cur.next.next;
pCur = pCur.next;
cur = cur.next;
}
return head;
}
}
剑指offer25
原文:http://blog.51cto.com/12222886/2063561