Uses of Class
com_github_leetcode.Node
-
-
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)
-
Uses of Node in g0501_0600.s0559_maximum_depth_of_n_ary_tree
Methods in g0501_0600.s0559_maximum_depth_of_n_ary_tree with parameters of type Node Modifier and Type Method Description int
Solution. maxDepth(Node root)
-
Uses of Node in g0501_0600.s0589_n_ary_tree_preorder_traversal
Methods in g0501_0600.s0589_n_ary_tree_preorder_traversal with parameters of type Node Modifier and Type Method Description List<Integer>
Solution. preorder(Node root)
-
Uses of Node in g0501_0600.s0590_n_ary_tree_postorder_traversal
Methods in g0501_0600.s0590_n_ary_tree_postorder_traversal with parameters of type Node Modifier and Type Method Description List<Integer>
Solution. postorder(Node root)
-