Skip to content

二叉树中和为某一值的路径

Posted on:2022年5月16日 at 23:01

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

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

示例 1:

输入: root = [5,4,8,11,null,13,4,7,2,null,null,5,1], targetSum = 22 输出: [[5,4,11,2],[5,8,4,5]]

示例 2:

输入: root = [1,2,3], targetSum = 5 输出: []

示例 3:

输入: root = [1,2], targetSum = 0 输出: []

提示:

/**
 * Definition for a binary tree node.
 * function TreeNode(val, left, right) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.left = (left===undefined ? null : left)
 *     this.right = (right===undefined ? null : right)
 * }
 */
/**
 * @param {TreeNode} root
 * @param {number} target
 * @return {number[][]}
 */
var pathSum = function (root, target) {};

解题思路

深度优先遍历

/**
 * Definition for a binary tree node.
 * function TreeNode(val, left, right) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.left = (left===undefined ? null : left)
 *     this.right = (right===undefined ? null : right)
 * }
 */
/**
 * @param {TreeNode} root
 * @param {number} target
 * @return {number[][]}
 */

var pathSum = function (root, sum) {
  if (!root) return [];
  const res = [];

  const dfs = (root, sum, path) => {
    if (!root) return;
    // 到了叶子节点并且当前节点的值跟剩余sum相等,则推入结果集中
    if (root.val === sum && !root.left && !root.right) {
      res.push(path);
    }
    // 路径中加入当前节点的值
    path.push(root.val);
    dfs(root.left, sum - root.val, path.slice());
    dfs(root.right, sum - root.val, path.slice());
  };

  dfs(root, sum, []);
  return res;
};
原文转自:https://fe.ecool.fun/topic/f0664776-84fa-45ea-800d-3873b9180d36