博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[leedcode 129] Sum Root to Leaf Numbers
阅读量:5110 次
发布时间:2019-06-13

本文共 1199 字,大约阅读时间需要 3 分钟。

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.

/** * Definition for a binary tree node. * public class TreeNode { *     int val; *     TreeNode left; *     TreeNode right; *     TreeNode(int x) { val = x; } * } */public class Solution {    //从根节点到叶子节点的路径代表一个数值,找出所有的这些数值然后累加得到一个和。DFS    //本题主要注意getRes函数的参数,path代表到达node节点时,路径上已经存在的和!    //本题注意题意:只有到达叶子节点(left=right=null)才能够将结果保存到res,所以注意递归结束条件    int res;    public int sumNumbers(TreeNode root) {        getRes(root,0);        return res;            }    public void getRes(TreeNode node,int path){
//注意path参数含义! if(node==null) return; int temp=path*10+node.val; if(node.left==null&&node.right==null){ res+=temp; return; } getRes(node.left,temp); getRes(node.right,temp); }}

 

转载于:https://www.cnblogs.com/qiaomu/p/4674950.html

你可能感兴趣的文章
可选参数的函数还可以这样设计!
查看>>
[你必须知道的.NET]第二十一回:认识全面的null
查看>>
Java语言概述
查看>>
关于BOM知识的整理
查看>>
使用word发布博客
查看>>
面向对象的小demo
查看>>
微服务之初了解(一)
查看>>
GDOI DAY1游记
查看>>
收集WebDriver的执行命令和参数信息
查看>>
数据结构与算法(三)-线性表之静态链表
查看>>
mac下的mysql报错:ERROR 1045(28000)和ERROR 2002 (HY000)的解决办法
查看>>
MyBaits动态sql语句
查看>>
HDU4405(期望DP)
查看>>
拉格朗日乘子法 那些年学过的高数
查看>>
vs code 的便捷使用
查看>>
Spring MVC @ResponseBody返回中文字符串乱码问题
查看>>
用户空间与内核空间,进程上下文与中断上下文[总结]
查看>>
JS 中的跨域请求
查看>>
JAVA开发环境搭建
查看>>
mysql基础语句
查看>>