• 力扣-路径总和问题


     路径总和 --简单

    112. 路径总和

    给你二叉树的根节点 root 和一个表示目标和的整数 targetSum 。判断该树中是否存在 根节点到叶子节点 的路径,这条路径上所有节点值相加等于目标和 targetSum 。如果存在,返回 true ;否则,返回 false 。

    叶子节点 是指没有子节点的节点。

    直接果断dfs做题就行了。

    这里是C的代码

    1. /**
    2. * Definition for a binary tree node.
    3. * struct TreeNode {
    4. * int val;
    5. * struct TreeNode *left;
    6. * struct TreeNode *right;
    7. * };
    8. */
    9. bool hasPathSum(struct TreeNode* root, int targetSum){
    10. if(root==NULL)
    11. return false;
    12. else
    13. if(targetSum==root->val&&root->right==NULL&&root->left==NULL)
    14. return true;
    15. else
    16. return (hasPathSum((root->right),targetSum-root->val))+(hasPathSum((root->left),targetSum-root->val));
    17. }

    这里是Java的代码

    1. /**
    2. * Definition for a binary tree node.
    3. * public class TreeNode {
    4. * int val;
    5. * TreeNode left;
    6. * TreeNode right;
    7. * TreeNode() {}
    8. * TreeNode(int val) { this.val = val; }
    9. * TreeNode(int val, TreeNode left, TreeNode right) {
    10. * this.val = val;
    11. * this.left = left;
    12. * this.right = right;
    13. * }
    14. * }
    15. */
    16. class Solution {
    17. public boolean hasPathSum(TreeNode root, int targetSum) {
    18. if(root == null)
    19. return false;
    20. else if(root.left == null && root.right == null && targetSum == root.val)
    21. return true;
    22. else
    23. return (hasPathSum((root.right),targetSum-root.val)) ||(hasPathSum((root.left),targetSum-root.val));
    24. }
    25. }

    路径总和2 --中等

    113. 路径总和 II

    给你二叉树的根节点 root 和一个整数目标和 targetSum ,找出所有 从根节点到叶子节点 路径总和等于给定目标和的路径。

    叶子节点 是指没有子节点的节点

     

    1. /**
    2. * Definition for a binary tree node.
    3. * public class TreeNode {
    4. * int val;
    5. * TreeNode left;
    6. * TreeNode right;
    7. * TreeNode() {}
    8. * TreeNode(int val) { this.val = val; }
    9. * TreeNode(int val, TreeNode left, TreeNode right) {
    10. * this.val = val;
    11. * this.left = left;
    12. * this.right = right;
    13. * }
    14. * }
    15. */
    16. class Solution {
    17. LinkedList> res = new LinkedList<>();//最后返回的结果集合
    18. LinkedList path = new LinkedList<>(); //路径集合
    19. void dfs(TreeNode root,int targetSum){
    20. if(root == null) {
    21. return;
    22. }
    23. path.add(root.val);
    24. dfs(root.left,targetSum-root.val);
    25. dfs(root.right,targetSum-root.val);
    26. if(targetSum == root.val && root.left == null && root.right == null)
    27. res.add(new LinkedList(path)); //感觉最重要的就是这里了,new LinkedList(path)直接把path的值赋给新的对象了。
    28. path.removeLast();
    29. }
    30. public List> pathSum(TreeNode root, int targetSum) {
    31. if(root == null)
    32. return res;
    33. dfs(root,targetSum);
    34. return res;
    35. }
    36. }

    路径总和3

    437. 路径总和 III

    给定一个二叉树的根节点 root ,和一个整数 targetSum ,求该二叉树里节点值之和等于 targetSum 的 路径 的数目。

    路径 不需要从根节点开始,也不需要在叶子节点结束,但是路径方向必须是向下的(只能从父节点到子节点)。

     这个题目就是求每个节点的到另一个节点路径总和会等于targetsum吗?

    所以直接得出:直接对每个结点进行dfs就可以解决了。

    这个题目还有一种做法,就是用bfs+dfs来做,bfs遍历树,然后dfs求每个结点的路径总和。

     

    这个题目有个注意点,就是测试数据中,有个很大的结点值,必须要用long来接收,int会越界出错,属实让我触不及防了。

    1. /**
    2. * Definition for a binary tree node.
    3. * public class TreeNode {
    4. * int val;
    5. * TreeNode left;
    6. * TreeNode right;
    7. * TreeNode() {}
    8. * TreeNode(int val) { this.val = val; }
    9. * TreeNode(int val, TreeNode left, TreeNode right) {
    10. * this.val = val;
    11. * this.left = left;
    12. * this.right = right;
    13. * }
    14. * }
    15. */
    16. class Solution {
    17. public int pathSum(TreeNode root, int targetSum) { if(root==null){ return 0; }
    18. int res = 0;
    19. long ts = (long) targetSum;
    20. res += PointCount(root, ts);
    21. res += pathSum(root.left, (int)ts);
    22. res += pathSum(root.right, (int)ts);
    23. return res;
    24. }
    25. public int PointCount(TreeNode root, long targetSum){
    26. int res = 0;
    27. if(root == null){
    28. return 0;
    29. }
    30. long val = (long) root.val;
    31. if(val == targetSum){
    32. res++;
    33. }
    34. res += PointCount(root.left, targetSum-val);
    35. res += PointCount(root.right, targetSum-val);
    36. return res;
    37. }
    38. }

    总结

    其实这种路径问题就是围绕dfs和bfs来做题的。掌握好dfs和bfs就可以基本拿捏这种类型的题目了。

  • 相关阅读:
    【3】c++设计模式——>UML表示类之间的关联关系
    C++游戏设计教程(4)—— 用颜色原理打印平面地图
    Go-Excelize API源码阅读(三十四)——RemoveRow
    大数据Flink(八十二):SQL语法的DDL:Create 子句
    计算机毕业设计 SSM+Vue旅游信息平台系统 景区旅游系统 旅游咨询信息系统 旅游网址管理系统Java Vue MySQL数据库 远程调试 代码讲解
    Rust 力扣 - 1456. 定长子串中元音的最大数目
    mysql指令行登录如何添加mysql.sock的配置?(亲测)
    一级造价工程师(安装)- 计量笔记 - 第六章第三节通信设备及线路工程
    J9数字论:什么是Web3.0概念?
    mysql插入记录时违反唯一索引的处理
  • 原文地址:https://blog.csdn.net/qq_62074445/article/details/134448799