Uses of Class
com_github_leetcode.Node
-
Packages that use Node Package Description com_github_leetcode g0101_0200.s0133_clone_graph g0401_0500.s0429_n_ary_tree_level_order_traversal -
-
Uses of Node in com_github_leetcode
Fields in com_github_leetcode with type parameters of type Node Modifier and Type Field Description List<Node>
Node. neighbors
Constructor parameters in com_github_leetcode with type arguments of type Node Constructor Description Node(int val, List<Node> neighbors)
-
Uses of Node in g0101_0200.s0133_clone_graph
Methods in g0101_0200.s0133_clone_graph that return Node Modifier and Type Method Description Node
Solution. cloneGraph(Node node)
Methods in g0101_0200.s0133_clone_graph with parameters of type Node Modifier and Type Method Description Node
Solution. cloneGraph(Node node)
-
Uses of Node in g0401_0500.s0429_n_ary_tree_level_order_traversal
Methods in g0401_0500.s0429_n_ary_tree_level_order_traversal with parameters of type Node Modifier and Type Method Description List<List<Integer>>
Solution. levelOrder(Node root)
-