复制带随机指针的链表

题目

给出一个链表,每个节点包含一个额外增加的随机指针可以指向链表中的任何节点或空的节点。
返回一个深拷贝的链表。

解题思路

第一遍扫的时候巧妙运用next指针, 开始数组是1->2->3->4 。 然后扫描过程中 先建立copy节点 1->1'->2->2'->3->3'->4->4', 然后第二遍copy的时候去建立边的copy, 拆分节点, 一边扫描一边拆成两个链表,这里用到两个dummy node。第一个链表变回1->2->3 , 然后第二变成 1'->2'->3' 。

代码实现

/**
 * Definition for singly-linked list with a random pointer.
 * class RandomListNode {
 *     int label;
 *     RandomListNode next, random;
 *     RandomListNode(int x) { this.label = x; }
 * };
 */
public class Solution {
    /**
     * @param head: The head of linked list with a random pointer.
     * @return: A new head of a deep copy of the list.
     */
//复 制 next节点 
//1->2->3->4 ,变成 1->1'->2->2'->3->3'->4->4'
  private void copyNext(RandomListNode head) {
            while (head != null) {
                RandomListNode newNode = new RandomListNode(head.label);
                newNode.next = head.next;
                newNode.random = head.random;
                head.next = newNode;
                head = head.next.next;
            }
        }
        //复制 random
        //如果1的随机指针指向2,则复制1'的随机指针指向2',
  private void copyRandom(RandomListNode head) {
            while (head != null) {
                if (head.next.random != null) {
                    head.next.random = head.random.next;
                } 
                head = head.next.next;
            }
        }
        //拆 分
        // 1->1'->2->2'->3->3'->4->4' 变成 1->2->3->4和1'->2'->3'->4'
  private RandomListNode spiltList(RandomListNode head) {
            RandomListNode newHead = head.next;
            while (head != null) {
                RandomListNode temp = head.next;
                head.next = temp.next;
                head = head.next;
                if (temp.next != null) {
                    temp.next = temp.next.next;
                }
            }
            return newHead;
        } 
  public RandomListNode copyRandomList(RandomListNode head) {
        if (head == null) {
            return null;
        }
        copyNext(head);
        copyRandom(head);
        return spiltList(head);
    }     
}

你可能感兴趣的:(复制带随机指针的链表)