二叉树根节点到叶子节点的和为指定值的路径

图片说明

/*
 * function TreeNode(x) {
 *   this.val = x;
 *   this.left = null;
 *   this.right = null;
 * }
 */

/**
  * 
  * @param root TreeNode类 
  * @param sum int整型 
  * @return int整型二维数组
  */
function pathSum( root ,  sum ) {
    // write code here
    if(!root) return []//false
    var result = []
    function dfs(root,cursum,path){
        if(!root) return
        if(root){
            cursum += root.val
            path.push(root.val)
            if(cursum==sum&&!root.left&&!root.right){
                result.push(path)
                return
            }
            if(root.left) dfs(root.left,cursum,[...path])
            if(root.right) dfs(root.right,cursum,[...path])
        }
    }
    dfs(root,0,[])
    return result;
    //判断是否存在
    //return result.length==0? false:true;
}
module.exports = {
    pathSum : pathSum
};
树算法 文章被收录于专栏

树相关算法

全部评论

相关推荐

牛客279957775号:铁暗恋
点赞 评论 收藏
分享
10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务