129. Sum Root to Leaf Numbers

 

 

Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.

An example is the root-to-leaf path 1->2->3 which represents the number 123.

Find the total sum of all root-to-leaf numbers.

For example,

    1
   / \
  2   3

 

The root-to-leaf path 1->2 represents the number 12.
The root-to-leaf path 1->3 represents the number 13.

Return the sum = 12 + 13 = 25.

 

复制代码
public int SumNumbers(TreeNode root) {
        return SumSub(root,0);
    }
    
    
    public int SumSub(TreeNode root, int num)
    {
         if(root == null) return num;
         int nextNum = num*10 + root.val;
         if(root.left == null && root.right == null) return num*10 + root.val;
         if(root.left == null) return SumSub(root.right,nextNum);
         if(root.right == null) return SumSub(root.left,nextNum);
         return SumSub(root.left,nextNum) + SumSub(root.right,nextNum);
    }
复制代码

 

posted @   咖啡中不塌缩的方糖  阅读(101)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 内存占用高分析
· .NET Core GC计划阶段(plan_phase)底层原理浅谈
· .NET开发智能桌面机器人:用.NET IoT库编写驱动控制两个屏幕
· 用纯.NET开发并制作一个智能桌面机器人:从.NET IoT入门开始
· 一个超经典 WinForm,WPF 卡死问题的终极反思
阅读排行:
· 20250116 支付宝出现重大事故 有感
· 一个基于 Roslyn 和 AvalonEdit 的跨平台 C# 编辑器
· 2025 最佳免费商用文本转语音模型: Kokoro TTS
· 在 .NET Core中如何使用 Redis 创建分布式锁
· 海康工业相机的应用部署不是简简单单!?
点击右上角即可分享
微信分享提示