这是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)));
}
}
}
我在日食上测试,结果是正确的。
我的代码出了什么问题?
答案 0 :(得分:0)
你为什么要做String.valueOf(root.val)
?这是将你的int变量转换为字符串并将0加1作为字符串,而不是整数,因此结果错误。