力扣:138. 复制带随机指针的链表

This commit is contained in:
huangge1199 2021-02-09 15:54:39 +08:00
parent 580b0b0b31
commit e7f4e9f1e9
4 changed files with 129 additions and 5 deletions

View File

@ -1,5 +1,7 @@
package com.code.leet.entiy; package com.code.leet.entiy;
import java.util.List;
/** /**
* @Author: hyy * @Author: hyy
* @Date: 2020-02-12 14:36 * @Date: 2020-02-12 14:36
@ -9,7 +11,31 @@ public class ListNode {
public int val; public int val;
public ListNode next; public ListNode next;
public ListNode(int x) { public ListNode() {}
val = x; public ListNode(int val) {
this.val = val;
}
public ListNode(int val, ListNode next) { this.val = val; this.next = next; }
public ListNode(List<Integer> list){
if(list.size()==0){
return;
}
if(list.size()==1){
this.val = list.get(0);
return;
}
if(list.size()==2){
this.val = list.get(0);
this.next = new ListNode(list.get(1));
return;
}
this.val = list.get(0);
this.next = new ListNode(list.get(1));
ListNode newHead = this.next;
for (int i = 2; i < list.size(); i++) {
newHead.next = new ListNode(list.get(i));
newHead = newHead.next;
}
} }
} }

View File

@ -0,0 +1,13 @@
package com.code.leet.entiy;
public class Node {
public int val;
public Node next;
public Node random;
public Node(int val) {
this.val = val;
this.next = null;
this.random = null;
}
}

View File

@ -1,13 +1,25 @@
package com.code.leet.entiy; package com.code.leet.entiy;
/** /**
* @Author: hyy * @Author: hyy
* @Date: 2020-02-13 18:25 * @Date: 2020-02-13 18:25
*/ */
public class TreeNode { public class TreeNode {
public int val;
public TreeNode left; public TreeNode left;
public Integer val;
public TreeNode right; public TreeNode right;
public TreeNode(int x) { val = x; }
TreeNode() {
}
public TreeNode(int val) {
this.val = val;
}
TreeNode(int val, TreeNode left, TreeNode right) {
this.val = val;
this.left = left;
this.right = right;
}
} }

View File

@ -0,0 +1,73 @@
package com.code.leet.study.t20210209;
import com.code.leet.entiy.Node;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* 给你一个长度为 n 的链表每个节点包含一个额外增加的随机指针 random 该指针可以指向链表中的任何节点或空节点
* <p>
* 构造这个链表的 深拷贝 深拷贝应该正好由 n 全新 节点组成其中每个新节点的值都设为其对应的原节点的值新节点的 next 指针和 random 指针也都应指向复制链表中的新节点并使原链表和复制链表中的这些指针能够表示相同的链表状态复制链表中的指针都不应指向原链表中的节点
* <p>
* 例如如果原链表中有 X Y 两个节点其中 X.random --> Y 那么在复制链表中对应的两个节点 x y 同样有 x.random --> y
* <p>
* 返回复制链表的头节点
* <p>
* 用一个由 n 个节点组成的链表来表示输入/输出中的链表每个节点用一个 [val, random_index] 表示
* <p>
* val一个表示 Node.val 的整数
* random_index随机指针指向的节点索引范围从 0 n-1如果不指向任何节点则为 null
* 你的代码 接受原链表的头节点 head 作为传入参数
*/
public class CopyRandomList {
/**
* 138. 复制带随机指针的链表
*/
public Node copyRandomList(Node head) {
Map<Node, Node> map = new HashMap<>();
return copy(head, map);
}
private Node copy(Node head, Map<Node, Node> map) {
if (head == null) {
return null;
}
if (map.containsKey(head)) {
return map.get(head);
}
Node node = new Node(head.val);
map.put(head, node);
node.next = copy(head.next, map);
node.random = copy(head.random, map);
return node;
}
// public Node copyRandomList(Node head) {
// if (head == null) {
// return null;
// }
// Node newHead = new Node(head.val);
// Node temp = newHead;
// List<Node> list = new ArrayList<>();
// List<Node> newlist = new ArrayList<>();
// list.add(head);
// newlist.add(temp);
// head = head.next;
// while (head != null) {
// list.add(head);
// temp.next = new Node(head.val);
// head = head.next;
// temp = temp.next;
// newlist.add(temp);
// }
// int size = list.size();
// for (int i = 0; i < size; i++) {
// newlist.get(i).random = list.get(i).random == null ? null : newlist.get(list.indexOf(list.get(i).random));
// }
//
// return newHead;
// }
}