剑指 Offer 35. 复杂链表的复制
  1BnnW8rtw7M9 2023年11月02日 44 0


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

方法一

哈希表+两次遍历

class Solution {
    public Node copyRandomList(Node head) {
        Node dummy = new Node(-1), h = head, d = dummy;
        HashMap<Node, Node> map = new HashMap<>();
        
        while(h != null){
            d.next = new Node(h.val);
            map.put(h, d.next);
            h = h.next;
            d = d.next;
        }

        h = head;
        d = dummy.next;
        while(h != null){
            d.random = map.get(h.random);
            h = h.next;
            d = d.next;
        }

        return dummy.next;
    }
}

方法二

拼接与拆分+三次遍历 不使用额外空间

class Solution {
    public Node copyRandomList(Node head) {
        if(head == null) return null;
        Node dummy = new Node(-1), h = head, d = dummy;

        // 在每个节点后面复制一次
        while(h != null){
            Node tmp = new Node(h.val);
            tmp.next = h.next;
            h.next = tmp;
            h = h.next.next;
        }

        // 修改复制节点的random指针
        h = head;
        while(h != null){
            if(h.random != null) h.next.random = h.random.next;
            h = h.next.next;
        }

        // 拆分
        h = head;
        dummy.next = h.next;
        d = h.next;
        while(h.next.next != null){  // 最后一个节点不处理了
            h.next = h.next.next;
            d.next = d.next.next;
            h = h.next;
            d = d.next;
        }
        h.next = null;  // 单独处理最后一个节点

        return dummy.next;
    }
}

方法三

回溯 + 哈希表

class Solution {
    HashMap<Node, Node> map = new HashMap<>();

    public Node copyRandomList(Node head) {
        if(head == null) return null;
        if(!map.containsKey(head)){
            Node newHead = new Node(head.val);
            map.put(head, newHead);
            newHead.next = copyRandomList(head.next);
            newHead.random = copyRandomList(head.random);
        }
        return map.get(head);
    }
}


【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月08日 0

暂无评论

推荐阅读
1BnnW8rtw7M9
作者其他文章 更多