题目链接 递归 递归函数什么时候需要返回值? 如果需要搜索整棵二叉树且不需要处理递归返回值,递归函数不要返回值如果需要搜索整棵二叉树且需要处理递归返回值,递归函数需要返回值如果搜索其中一条条件的路径,递归一定需要返回值,遇到符合条件的路径需要及时返回 /*** Definition for a binary tree node.* public class TreeNode {*
原题如下 Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. 给定一棵二叉树和sum,判断是否存在这样的一条从根到叶子的路径,它的路径上的值的总和等于s