forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_589.java
31 lines (27 loc) · 789 Bytes
/
_589.java
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
package com.fishercoder.solutions;
import com.fishercoder.common.classes.Node;
import java.util.ArrayList;
import java.util.List;
public class _589 {
public static class Solution1 {
public List<Integer> preorder(Node root) {
List<Integer> result = new ArrayList<>();
if (root == null) {
return result;
}
dfs(root, result);
return result;
}
private void dfs(Node root, List<Integer> result) {
if (root == null) {
return;
}
result.add(root.val);
if (root.children.size() > 0) {
for (Node child : root.children) {
dfs(child, result);
}
}
}
}
}