从根到叶的二进制数之和(1022-java)
给出一棵二叉树,其上每个结点的值都是 0 或 1 。每一条从根到叶的路径都代表一个从最高有效位开始的二进制数。例如,如果路径为 0 -> 1 -> 1 -> 0 -> 1,那么它表示二进制数 01101,也就是 13 。
对树上的每一片叶子,我们都要找出从根到该叶子的路径所表示的数字。
返回这些数字之和。题目数据保证答案是一个 32 位 整数。
示例 1:
输入:root = [1,0,1,0,1,0,1]
输出:22
解释:(100) + (101) + (110) + (111) = 4 + 5 + 6 + 7 = 22
示例 2:输入:root = [0]
输出:0
示例 3:输入:root = [1]
输出:1
public class LC254_1022_sumRootToLeaf {
//二叉树static int ans = 0;public static int sumRootToLeaf(TreeNode root) {
sum(root, 0);return ans;}private static void sum(TreeNode root, int i) {
if (root == null) {
return;}int val = i * 2 + root.val;if (root.left == null && root.right == null) {
ans += val;return;}sum(root.left, val);sum(root.right, val);}public static void main(String[] args) {
TreeNode tree = TreeNode.createTree();System.out.println(sumRootToLeaf(tree));}
}