标签:style blog color java strong for 问题 代码
题目:
Given a binary tree and a sum, find all root-to-leaf paths where each path‘s sum equals the given sum.
For example:sum = 22
,
5 / 4 8 / / 11 13 4 / \ / 7 2 5 1
return
[ [5,4,11,2], [5,8,4,5] ]
题解:
这道题除了要判断是否有这样的一个path sum,还需要把所有的都可能性结果都返回,所以就用传统的DFS递归解决子问题。代码如下:
Path Sum II leetcode java,布布扣,bubuko.com
标签:style blog color java strong for 问题 代码
原文地址:http://www.cnblogs.com/springfor/p/3879827.html