博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] 437. Path Sum III_ Easy tag: DFS
阅读量:5363 次
发布时间:2019-06-15

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

You are given a binary tree in which each node contains an integer value.

Find the number of paths that sum to a given value.

The path does not need to start or end at the root or a leaf, but it must go downwards (traveling only from parent nodes to child nodes).

The tree has no more than 1,000 nodes and the values are in the range -1,000,000 to 1,000,000.

Example:

root = [10,5,-3,3,2,null,11,3,-2,null,1], sum = 8      10     /  \    5   -3   / \    \  3   2   11 / \   \3  -2   1Return 3. The paths that sum to 8 are:1.  5 -> 32.  5 -> 2 -> 13. -3 -> 11 这个题目的思路就是类似于, 只不过我们不需要一定是leaf再判断, 同时recursive root.left and root.right, 最后返回总的个数即可. 1. Constraints 1) empty => 0 2. IDeas DFS     T: O(n^2)  worst cases, when like linked lists         T: O(nlgn)  best cases, when balanced tree   because height = lgn 1) edge case, if not root: return 0 2) create a helper function, get number of paths from root -> any child node s.t sum(path) == target 3) return helper(root) and recursively call root.left and root.right 3. Code
1 class Solution:2     def pathSum3(self, root, target):3         def rootSum(root, target):  # helper function to get number of paths from root -> any child node s.t sum == target4             if not root: return 05             d = target - root.val6             temp = 1 if d == 0 else 07             return temp + rootSum(root.left, d) + rootSum(root.right, d)8         if not root: return 09         return rootSum(root, target) + self.pathSum3(root.left, target) + self.pathSum3(root.right, target)

 

4. Test cases

1) empty

2) 1, 1

3) 

1     /  \    1   1               target = 1 4)
target = 8
10     /  \    5   -3   / \    \  3   2   11 / \   \3  -2   1

转载于:https://www.cnblogs.com/Johnsonxiong/p/9326919.html

你可能感兴趣的文章
Java有没有goto?
查看>>
(转)makefile 的用法
查看>>
求不相邻金币相加和的最大值--动态规划1
查看>>
[转][osg]探索未知种族之osg类生物【目录】
查看>>
四十九. Zabbix报警机制 、 Zabbix进阶操作 、 监控案例
查看>>
元类中__new__ 与 __init__的区别--day27
查看>>
占小狼的简书博客
查看>>
struts2__action执行顺序
查看>>
php异常处理
查看>>
[xampp] /usr/bin/env: php: No such file or directory
查看>>
细学PHP 10 贴吧-2
查看>>
黑客攻防入门秘籍
查看>>
Swift迎来了1.0 GM 版(2014.09.09)
查看>>
【iOS开发-68】APP下载案例:利用tableView自带的cell布局+缓存池cell复用时注意button状态的检查...
查看>>
《Genesis-3D开源游戏引擎-FQA常见问题解答》2014年01月10号版本
查看>>
Java 编程下实现随机无重复数字功能
查看>>
Android 编程下的代码混淆
查看>>
animation属性
查看>>
页内的模块和组件抽象规划经验
查看>>
安全-分析深圳电信的新型HTTP劫持方式
查看>>