N叉树的后序遍历
2019-06-12 本文已影响0人
习惯了_就好
给定一个 N 叉树,返回其节点值的后序遍历。
例如,给定一个 3叉树
:
返回其后序遍历: [5,6,3,2,4,1]
.
/*
// Definition for a Node.
class Node {
public int val;
public List<Node> children;
public Node() {}
public Node(int _val,List<Node> _children) {
val = _val;
children = _children;
}
};
*/
class Solution {
List<Integer> list = new ArrayList();
public List<Integer> postorder(Node root) {
if(root == null) return list;
for(Node node : root.children){
postorder(node);
}
//后序遍历最后添加根节点
list.add(root.val);
return list;
}
}