1. 程式人生 > >[LeetCode]129. Sum Root to Leaf Numbers路徑數字求和

[LeetCode]129. Sum Root to Leaf Numbers路徑數字求和

node helper class 路徑 != leetcode 求和 span int

DFS的標準形式

用一個String記錄路徑,最後判斷到葉子時加到結果上。

int res = 0;
    public int sumNumbers(TreeNode root) {
        if (root==null)
            return res;
        helper(root,"");
        return res;
    }
    public void helper(TreeNode root,String s)
    {
        s += root.val+"";
        if (root.left==null&&root.right==null
) { res+=Integer.parseInt(s); return; } if (root.left!=null) helper(root.left,s); if (root.right!=null) helper(root.right,s); }

[LeetCode]129. Sum Root to Leaf Numbers路徑數字求和