Uses of Class
com_github_leetcode.left_right.Node
-
Packages that use Node Package Description com_github_leetcode.left_right g0101_0200.s0116_populating_next_right_pointers_in_each_node g0101_0200.s0117_populating_next_right_pointers_in_each_node_ii -
-
Uses of Node in com_github_leetcode.left_right
Fields in com_github_leetcode.left_right declared as Node Modifier and Type Field Description Node
Node. left
Node
Node. next
Node
Node. right
Constructors in com_github_leetcode.left_right with parameters of type Node Constructor Description Node(int val, Node left, Node right, Node next)
-
Uses of Node in g0101_0200.s0116_populating_next_right_pointers_in_each_node
Methods in g0101_0200.s0116_populating_next_right_pointers_in_each_node that return Node Modifier and Type Method Description Node
Solution. connect(Node root)
Methods in g0101_0200.s0116_populating_next_right_pointers_in_each_node with parameters of type Node Modifier and Type Method Description Node
Solution. connect(Node root)
-
Uses of Node in g0101_0200.s0117_populating_next_right_pointers_in_each_node_ii
Methods in g0101_0200.s0117_populating_next_right_pointers_in_each_node_ii that return Node Modifier and Type Method Description Node
Solution. connect(Node root)
Methods in g0101_0200.s0117_populating_next_right_pointers_in_each_node_ii with parameters of type Node Modifier and Type Method Description Node
Solution. connect(Node root)
-