《剑指Offer》35. 复杂链表的复制

题目链接

牛客网

题目描述

输入一个复杂链表(每个节点中有节点值,以及两个指针,一个指向下一个节点,另一个特殊指针指向任意一个节点),返回结果为复制后复杂链表的 head。

public class RandomListNode {
   
    int label;
    RandomListNode next = null;
    RandomListNode random = null;

    RandomListNode(int label) {
   
        this.label = label;
    }
}

解题思路

public class Solution {
   
    public RandomListNode Clone(RandomListNode pHead){
   
        if (pHead==null) return null;
        // 复制
        RandomListNode cur = pHead;
        while (cur != null) {
   
            RandomListNode clone = new RandomListNode(cur.label);
            clone.next = cur.next;
            cur.next = clone;
            cur = clone.next;
        }
        // 复制Random
        cur = pHead;
        while (cur != null) {
   
            RandomListNode clone = cur.next;
            if (cur.random != null) clone.random = cur.random.next;
            cur = clone.next;
        }
        // 将复制与原生拆开
        cur = pHead;
        RandomListNode clonePHead = pHead.next;
        while (cur.next != null) {
   
            RandomListNode clone = cur.next;
            cur.next = clone.next;
            cur = clone;
        }
        return clonePHead;
    }
}
全部评论

相关推荐

点赞 评论 收藏
分享
ming_ri:后端依旧稳定发挥
点赞 评论 收藏
分享
程序员小白条:这比例牛逼,750:1
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务