leetcode刷题:复制带随机指针的链表

在这里插入图片描述

题目链接

一、使用中间容器

使用hashmap,键为当前结点,值为新结点,通过键值对的映射关系,可以找到对应的next和random的位置。

   /**
     * 使用容器
     *
     * @param head
     * @return
     */
    public Node copyRandomList(Node head) {
        // key  老结点   value   新结点
        HashMap<Node, Node> map = new HashMap<>();
        Node cur = head;
        while (cur != null) {
            //创建映射关系,可以直接根据map找到对应的结果
            map.put(cur, new Node(cur.val));
            cur = cur.next;
        }
        cur = head;
        while (cur != null) {
            map.get(cur).next = map.get(cur.next);
            map.get(cur).random = map.get(cur.random);
            cur = cur.next;
        }
        return map.get(head);
    }

二、不借助容器

把 // 1 -> 2 -> 3
// 变为 1 -> 1* -> 2 -> 2 * -> 3 -> 3*
这样就可以通过 cur.next找到复制结点的位置,最后断开

 public static Node copyRandomList2(Node head) {
        if (head == null) {
            return null;
        }
        Node cur = head;
        Node next = null;
        // 1 -> 2 -> 3
        // 变为 1 -> 1` -> 2 -> 2` -> 3 -> 3`
        while (cur != null) {
            next = cur.next;
            cur.next = new Node(cur.val);
            cur.next.next = next;
            cur = next;
        }
        cur = head;
        Node copy = null;
        //  1 1` 2 2` 3 3`
        // 依次设置 1` 2` 3`的random指针
        while (cur != null) {
            next = cur.next.next;
            copy = cur.next;
            copy.random = cur.random == null ? null : cur.random.next;
            cur = next;
        }
        Node res = head.next;
        cur = head;
        //新 老 混在一起,next方向上,random正确
        while (cur != null) {
            next = cur.next.next;
            copy = cur.next;

            cur.next = next;
            copy.next = next == null ? null : next.next;
            cur = next;
        }
        return res;
    }

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值