forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_590.java
50 lines (47 loc) · 1.07 KB
/
_590.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.fishercoder.solutions;
import com.fishercoder.common.classes.Node;
import java.util.ArrayList;
import java.util.List;
/**
* 590. N-ary Tree Postorder Traversal
*
* Given an n-ary tree, return the postorder traversal of its nodes' values.
*
* For example, given a 3-ary tree:
*
* 1
* / | \
* 3 2 4
* / \
* 5 6
*
* Return its postorder traversal as: [5,6,3,2,4,1].
*
* Note:
*
* Recursive solution is trivial, could you do it iteratively?
*/
public class _590 {
public static class Solution1 {
public List<Integer> postorder(Node root) {
List<Integer> result = new ArrayList<>();
if (root == null) {
return result;
}
dfs(root, result);
result.add(root.val);
return result;
}
private void dfs(Node root, List<Integer> result) {
if (root == null) {
return;
}
if (root.children.size() > 0) {
for (Node child : root.children) {
dfs(child, result);
result.add(child.val);
}
}
}
}
}