题目描述:
输入一个复杂链表(每个节点中有节点值,以及两个指针,一个指向下一个节点,另一个特殊指针指向任意一个节点),返回结果为复制后复杂链表的head。(注意,输出结果中请不要返回参数中的节点引用,否则判题程序会直接返回空)
思路:在每一个节点后面复制一个该节点,然后取偶数位置上的节点即可。
Java代码实现:
import java.util.*;
public class Solution {
public RandomListNode Clone(RandomListNode pHead)
{
if(pHead == null){
return null;
}
RandomListNode head = new RandomListNode(pHead.label);
RandomListNode temp = head;
while(pHead.next != null){
temp.next = new RandomListNode(pHead.next.label);
if(pHead.random != null){
temp.random = new RandomListNode(pHead.random.label);
}
pHead = pHead.next;
temp = temp.next;
}
return head;
}
}