Binary Tree - Path Sum总结

29 篇文章 3 订阅

Path Sum I

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.

Note: A leaf is a node with no children.

Example:

Given the below binary tree and sum = 22,

      5
     / \
    4   8
   /   / \
  11  13  4
 /  \      \
7    2      1

思路:就是判断leaf的sum是否等于target,用传参 + node.val 的办法来进行backtracking,不用写,自动就做了。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public boolean hasPathSum(TreeNode root, int sum) {
        return hasHelper(root, sum, 0);
    }
    
    private boolean hasHelper(TreeNode node, int target, int cursum) {
        if(node == null) {
            return false;
        }
        if(node.left == null && node.right == null) {
            cursum += node.val;
            return cursum == target;
        }
        return hasHelper(node.left, target, cursum + node.val) ||
            hasHelper(node.right, target, cursum + node.val);
    }
}

Path Sum II

Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.

Note: A leaf is a node with no children.

Example:

Given the below binary tree and sum = 22,

      5
     / \
    4   8
   /   / \
  11  13  4
 /  \    / \
7    2  5   1

Return:

[
   [5,4,11,2],
   [5,8,4,5]
]

思路:就是backtracking,加完了,判断完了,要remove;remove list 最后一个是 remove(list.size() -1);

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public List<List<Integer>> pathSum(TreeNode root, int sum) {
        List<List<Integer>> lists = new ArrayList<List<Integer>>();
        if(root == null) {
            return lists;
        }
        List<Integer> list = new ArrayList<Integer>();
        dfs(root, sum, 0, lists, list);
        return lists;
    }
    
    private void dfs(TreeNode node, int target, int cursum, List<List<Integer>> lists, 
                    List<Integer> list) {
        if(node == null) {
            return;
        }
        if(node.left == null && node.right == null ) {
            cursum += node.val;
            list.add(node.val);
            if(cursum == target) {
                lists.add(new ArrayList<Integer>(list));
            }
            list.remove(list.size() -1);
            return;
        }
        list.add(node.val);
        dfs(node.left, target, cursum + node.val, lists, list);
        list.remove(list.size() - 1);
        
        list.add(node.val);
        dfs(node.right, target, cursum + node.val, lists, list);
        list.remove(list.size() - 1);
    }
}

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   1

Return 3. The paths that sum to 8 are:

1.  5 -> 3
2.  5 -> 2 -> 1
3. -3 -> 11

思路:就是以每一个node,为start point,进行计算,如果path - node.val = sum,那么就return 1;

pathSumHelper 就是记录包含当前node的所有计算count。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public int pathSum(TreeNode root, int sum) {
        if(root == null) {
            return 0;
        }
        // pathSumHelper 从node开始算;包含node;
        int cursum = pathSumHelper(root, sum);
        // pathSum 可以不从root开始,也就是root
        int leftsum = pathSum(root.left, sum);
        int rightsum = pathSum(root.right, sum);
        return cursum + leftsum + rightsum;
    }
    
    // pathSumHelper 从node开始算;包含node;
    private int pathSumHelper(TreeNode node, int sum) {
        if(node == null) {
            return 0;
        } else {
            int cursum = (node.val == sum ? 1 : 0 );
            int leftsum = pathSumHelper(node.left, sum - node.val);
            int rightsum = pathSumHelper(node.right, sum - node.val);
            return cursum + leftsum + rightsum;
        }
    }
}

Given a binary tree, find the maximum path sum.

The path may start and end at any node in the tree.

For example:
Given the below binary tree,

       1
      / \
     2   3

Return 6.

思路: 递归返回的包括当前node的最大值,为什么只能返回跟root有关的直线sum,因为返回上去要跟上面的有联系才能继续递归,否则如果返回root.val + leftmax + rightmax,那么返回上去,上面的不知道怎么用了,因为不是一条线了;所以只能返回 root.val, root.val + leftmax, root.val + rightmax中的最大值,那么递归的定义就是跟root.val有关的最大值;

root.val + leftmax + rightmax 只是global计算的时候需要;

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public int maxPathSum(TreeNode root) {
        if(root == null) {
            return 0;
        }
        int[] res = {Integer.MIN_VALUE};
        pathSumHelper(root, res);
        return res[0];
    }
    
    private int pathSumHelper(TreeNode root, int[] res) {
        if(root == null) {
            return 0;
        }
        int leftmax = pathSumHelper(root.left, res);
        int rightmax = pathSumHelper(root.right, res);
        int localmax = Math.max(root.val, Math.max(leftmax + root.val, rightmax + root.val));
        res[0] = Math.max(res[0], Math.max(localmax, leftmax + rightmax + root.val));
        return localmax;
    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值