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

138. 复制带随机指针的链表

时间:2020-04-16 13:10:57      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:yun   his   item   point   随机   null   因此   div   href   

给定一个链表,每个节点包含一个额外增加的随机指针,该指针可以指向链表中的任何节点或空节点。

要求返回这个链表的 深拷贝。 

我们用一个由 n 个节点组成的链表来表示输入/输出中的链表。每个节点用一个 [val, random_index] 表示:

  • val:一个表示 Node.val 的整数。
  • random_index:随机指针指向的节点索引(范围从 0 到 n-1);如果不指向任何节点,则为  null 。

 

示例 1:

技术图片

输入:head = [[7,null],[13,0],[11,4],[10,2],[1,0]]
输出:[[7,null],[13,0],[11,4],[10,2],[1,0]]

示例 2:

技术图片

输入:head = [[1,1],[2,1]]
输出:[[1,1],[2,1]]

示例 3:

技术图片

输入:head = [[3,null],[3,0],[3,null]]
输出:[[3,null],[3,0],[3,null]]

示例 4:

输入:head = []
输出:[]
解释:给定的链表为空(空指针),因此返回 null。

 

提示:

  • -10000 <= Node.val <= 10000
  • Node.random 为空(null)或指向链表中的节点。
  • 节点数目不超过 1000 。
/*
// 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 head;
        copyNext(head);
        copyRandom(head);
        return link(head);
    }
    
    private void copyNext(Node head){
        while(head != null){
            Node cpnode = new Node(head.val);
            Node next = head.next;
            cpnode.next = next;
            head.next = cpnode;
            head = next;
        }
    }
    private void copyRandom(Node head){
        while(head != null){
            Node cpnode = head.next;
            if(head.random != null){
                cpnode.random = head.random.next;
            }
            head = cpnode.next;
        }
    }
    private Node link(Node head){
        Node newHead = head.next;
        Node cpnode = head.next;
        head.next = cpnode.next;
        head = head.next;
        while(head != null){
            cpnode.next = head.next;
            head.next = head.next.next;
            cpnode = cpnode.next;
            head = head.next;
        }
        return newHead;
    }
    
    
}

 

138. 复制带随机指针的链表

标签:yun   his   item   point   随机   null   因此   div   href   

原文地址:https://www.cnblogs.com/zzytxl/p/12711988.html

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