1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| package com.demo.s138;
import java.util.HashMap; import java.util.Map;
class Node { int val; Node next; Node random;
public Node(int val) { this.val = val; this.next = null; this.random = null; } } public class Solution { Map<Node, Node> cachedNode = new HashMap<Node, Node>();
public Node copyRandomList(Node head) { if (head == null) { return null; } if (!cachedNode.containsKey(head)) { Node headNew = new Node(head.val); cachedNode.put(head, headNew); headNew.next = copyRandomList(head.next); headNew.random = copyRandomList(head.random); } return cachedNode.get(head); } }
|