/*
// Definition for a Node.
class Node {
int val;
Node next;
Node random;
public Node(int val) {
this.val = val;
this.next = null;
this.random = null;
}
}
*/
class Solution {
public Node copyRandomList(Node head) {
if(head == null){
return null;
}
Node cur = head;
//遍历链表,每次在新遍历的节点后插入一个一模一样的节点
while(cur != null){
Node tmp = new Node(cur.val);
tmp.next = cur.next;
cur.next = tmp;
cur = tmp.next;
}
Node curNode = head;
//再次遍历链表,这次把random的值给复制了
while(curNode != null){
if(curNode.random != null){
//此处的想一想,curNode.random.next才是真正的赋值,因为是复制
curNode.next.random = curNode.random.next;
}
curNode = curNode.next.next;
}
Node old = head;
Node newnode = head.next;
Node result = head.next;
while(newnode.next != null){
old.next = old.next.next;
newnode.next = newnode.next.next;
old = old.next;
newnode = newnode.next;
}
//还需要把旧的.next变为null
old.next = null;
return result;
}
}
作者:Code_respect
链接:https://leetcode-cn.com/problems/fu-za-lian-biao-de-fu-zhi-lcof/solution/jiu-lian-biao-li-fu-zhi-xin-biao-ran-hou-c7is/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
请实现 copyRandomList 函数,复制一个复杂链表。在复杂链表中,每个节点除了有一个 next 指针指向下一个节点,还有一个 random 指针指向链表中的任意节点或者 null。
最新推荐文章于 2022-09-26 17:49:02 发布