根数与叶数相加

时间:2015-08-26 06:18:46

标签: java algorithm tree binary-tree

这是problem(它在LeetCode上)

这是我的代码:

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    private static List<String> list = new LinkedList<String>();
    public int sumNumbers(TreeNode root) {
        serachBinaryTreeRecursion(root, "");
        int result = 0;
        for(String i : list){
            result += Integer.valueOf(i);
        }
        return result;
    }

    public void serachBinaryTreeRecursion(TreeNode root, String path) {
        if (root == null) {
            return;
        }
        if (root.left != null) {
            serachBinaryTreeRecursion(root.left, path + String.valueOf(root.val));
        }
        if (root.right != null) {
            serachBinaryTreeRecursion(root.right, path + String.valueOf(root.val));
        }
        if (root.left == null && root.right == null) {
            list.add((path + String.valueOf(root.val)));
        }
    }
}

当我提交此内容时,它会报告错误。 enter image description here

我在日食上测试,结果是正确的。

enter image description here

我的代码出了什么问题?

1 个答案:

答案 0 :(得分:0)

你为什么要做String.valueOf(root.val)?这是将你的int变量转换为字符串并将0加1作为字符串,而不是整数,因此结果错误。