23.复杂链表的复制: 请实现函数ComplexListNode clone(ComplexListNode head),复制一个复杂链表

一、题目
请实现函数ComplexListNode clone(ComplexListNode head),复制一个复杂链表。在复杂链表中,每个结点除了有一个next 域指向下一个结点外,还有一个sibling 指向链表中的任意结点或者null
二、解题思路
在不用辅助空间的情况下实现O(n)的时间效率。
第一步:遍历原链表,复制每个结点,把新结点插入对应老结点后边
第二步:遍历每组(老+新)结点,进行random 的复制
  cur.next.random = cur.random.next
第三步:拆分成新老链表

在这里插入图片描述
复制的过程
在这里插入图片描述

原文链接
https://blog.csdn.net/xy199931/article/details/98492144

public class Interview {
        public static void display(Node head) {
            for (Node cur = head; cur != null; cur = cur.next) {
                System.out.printf("(%d)-->", cur.val);
            }
            System.out.println("null");
        }

        public static Node createLinkedList() {
            Node n1 = new Node(1);
            Node n2 = new Node(2);
            Node n3 = new Node(3);
            Node n4 = new Node(4);
            Node n5 = new Node(5);
            n1.next = n2;
            n2.next = n3;
            n3.next = n4;
            n4.next = n5;
            n5.next = null;
            n1.random = n2;

            return n1;
        }

        public static Node copyRandomList(Node head) {
            if (head == null) {
                return null;
            }
            //复制每个结点,插入老结点后边
            Node cur = head;
            while (cur != null) {
                //复制的新结点
                Node node = new Node(cur.val);
                node.next = cur.next;
                cur.next = node;
                //cur指向老的下一个结点
                cur = node.next;
            }
            //2.random复制
            cur = head;
            while (cur != null) {
                if (cur.random != null) {
                    cur.next.random = cur.random.next;
                } else {
                    cur.next.random = null;
                }
                //cur指向老的下一个结点
                cur = cur.next.next;

            }
            //3.把head拆分新的老的链表
            cur = head;
            Node newHead = head.next;
            while (cur != null) {

                Node node = cur.next;
                cur.next = node.next;
                if (node.next != null) {
                    node.next = node.next.next;
                }
                //cur指向老的下一个结点
                cur = cur.next;
            }
            return newHead;
        }

        public static void main(String[] args) {
            Node head = createLinkedList();
            display(head);
            Node result = copyRandomList(head);
            display(result);

        }
    }


另一种写法:

public class Test {
    /**
     * 复杂链表结点
     */
    public static class ComplexListNode {
        int value;
        ComplexListNode next;
        ComplexListNode sibling;
    }

    /**
     * 实现函复制一个复杂链表。在复杂链表中,每个结点除了有一个next字段指向下一个结点外,
     * 还有一个sibling字段指向链表中的任意结点或者NULL
     *
     * @param head 链表表头结点
     * @return 复制结点的头结点
     */
    public static ComplexListNode clone(ComplexListNode head) {
        // 如果链表为空就直接返回空
        if (head == null) {
            return null;
        }

        // 先复制结点
        cloneNodes(head);
        // 再链接sibling字段
        connectNodes(head);
        // 将整个链表拆分,返回复制链表的头结点
        return reconnectNodes(head);
    }

    /**
     * 复制一个链表,并且将复制后的结点插入到被复制的结点后面,只链接复制结点的next字段
     *
     * @param head 待复制链表的头结点
     */
    public static void cloneNodes(ComplexListNode head) {
        // 如果链表不空,进行复制操作
        while (head != null) {
            // 创建一个新的结点
            ComplexListNode tmp = new ComplexListNode();
            // 将被复制结点的值传给复制结点
            tmp.value = head.value;
            // 复制结点的next指向下一个要被复制的结点
            tmp.next = head.next;
            // 被复制结点的next指向复制结点
            head.next = tmp;
            // 到些处就已经完成了一个结点的复制并且插入到被复制结点的后面
            // heed指向下一个被复制结点的位置
            head = tmp.next;
        }
    }

    /**
     * 设置复制结点的sibling字段
     *
     * @param head 链表的头结
     */
    public static void connectNodes(ComplexListNode head) {
        // 如链表不为空
        while (head != null) {
            // 当前处理的结点sibling字段不为空,则要设置其复制结点的sibling字段
            if (head.sibling != null) {
                // 复制结点的sibling指向被复制结点的sibling字段的下一个结点
                // head.next:表求复制结点,
                // head.sibling:表示被复制结点的sibling所指向的结点,
                // 它的下一个结点就是它的复制结点
                head.next.sibling = head.sibling.next;
            }
            // 指向下一个要处理的复制结点
            head = head.next.next;
        }
    }

    /**
     * 刚复制结点和被复制结点拆开,还原被复制的链表,同时生成复制链表
     *
     * @param head 链表的头结点
     * @return 复制链表的头结点
     */
    public static ComplexListNode reconnectNodes(ComplexListNode head) {

        // 当链表为空就直接返回空
        if (head == null) {
            return null;
        }

        // 用于记录复制链表的头结点
        ComplexListNode newHead = head.next;
        // 用于记录当前处理的复制结点
        ComplexListNode pointer = newHead;
        // 被复制结点的next指向下一个原链表结点
        head.next = newHead.next;
        // 指向新的被复制结点
        head = head.next;

        while (head != null) {
            // pointer指向复制结点
            pointer.next = head.next;
            pointer = pointer.next;
            // head的下一个指向复制结点的下一个结点,即原来链表的结点
            head.next = pointer.next;
            // head指向下一个原来链表上的结点
            head = pointer.next;
        }

        // 返回复制链表的头结点
        return newHead;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值