求根到叶子节点数字之和

Posted cstdio1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求根到叶子节点数字之和相关的知识,希望对你有一定的参考价值。

技术图片
技术图片

前序遍历+判断

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    int res = 0;
    //List<String> res = new LinkedList<>();
    public int sumNumbers(TreeNode root) {
        if(root == null) return 0;
        preOrder(root,"");
        //for(int i=0;i<res.size();i++)
        //System.out.print(res.get(i)+" ");
        return res;
    }
    public void preOrder(TreeNode root,String tmp){
    if(root == null) return;
    tmp += root.val+"";
    if(root.left == null && root.right == null){
        res += Integer.parseInt(tmp);
        //res.add(tmp);
        tmp = tmp.substring(0,tmp.length()-1);
        return;
    }
    preOrder(root.left,tmp);
    preOrder(root.right,tmp);
    }
}


以上是关于求根到叶子节点数字之和的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode] 129. 求根到叶子节点数字之和

求根到叶子节点数字之和

129. 求根到叶子节点数字之和

LeetCode 129. 求根到叶子节点数字之和(Sum Root to Leaf Numbers)

leetcode——129. 求根到叶子节点数字之和

129求根到叶子节点数字之和