Uses of Class
com_github_leetcode.random.Node
-
Packages that use Node Package Description com_github_leetcode.random g0101_0200.s0138_copy_list_with_random_pointer -
-
Uses of Node in com_github_leetcode.random
Fields in com_github_leetcode.random declared as Node Modifier and Type Field Description Node
Node. next
Node
Node. random
Constructors in com_github_leetcode.random with parameters of type Node Constructor Description Node(int val, Node next, Node random)
-
Uses of Node in g0101_0200.s0138_copy_list_with_random_pointer
Methods in g0101_0200.s0138_copy_list_with_random_pointer that return Node Modifier and Type Method Description Node
Solution. copyRandomList(Node head)
Methods in g0101_0200.s0138_copy_list_with_random_pointer with parameters of type Node Modifier and Type Method Description Node
Solution. copyRandomList(Node head)
-