java 366.找到Binary Tree.java的叶子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 366.找到Binary Tree.java的叶子相关的知识,希望对你有一定的参考价值。
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
private int addLeaves(TreeNode root, List<List<Integer>> res) {
if (root == null) return -1;
if (root.left == null && root.right == null) {
if (res.size() <= 0) res.add(new ArrayList<Integer>());
res.get(0).add(root.val);
return 0;
}
int height = Math.max(addLeaves(root.left, res), addLeaves(root.right, res)) + 1;
if (res.size() <= height) res.add(new ArrayList<Integer>());
res.get(height).add(root.val);
return height;
}
public List<List<Integer>> findLeaves(TreeNode root) {
List<List<Integer>> res = new ArrayList<>();
addLeaves(root, res);
return res;
}
}
以上是关于java 366.找到Binary Tree.java的叶子的主要内容,如果未能解决你的问题,请参考以下文章
java 366.找到Binary Tree.java的叶子
java 366.找到Binary Tree.java的叶子
java 366.找到Binary Tree.java的叶子
java 366.找到Binary Tree.java的叶子
java 366.找到Binary Tree.java的叶子
366. Find Leaves of Binary Tree