경로 합계 - 이진 트리
4918 단어 javascriptleetcode
리프는 자식이 없는 노드입니다.
예 1:
입력: 루트 = [5,4,8,11,null,13,4,7,2,null,null,null,1], targetSum = 22
출력: 참
설명: 대상 합계가 있는 루트-리프 경로는 22입니다.
/**
* 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} targetSum
* @return {boolean}
*/
var hasPathSum = function(root, targetSum) {
if (root === null) {
return false;
}
const currentSum = 0;
return checkSum(root, targetSum, currentSum);
};
const checkSum = (root, targetSum, currentSum) => {
if (root === null) {
return false;
}
currentSum = currentSum + root.val;
if (root.left === null && root.right === null) {
return currentSum === targetSum;
}
if (root.left) {
let bool = checkSum(root.left, targetSum, currentSum);
if (bool) {
return bool;
}
}
if (root.right) {
let bool = checkSum(root.right, targetSum, currentSum);
if (bool) {
return bool;
}
}
return false;
};
Reference
이 문제에 관하여(경로 합계 - 이진 트리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/zeeshanali0704/path-sum-binary-tree-37oo텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)