-
Notifications
You must be signed in to change notification settings - Fork 1
/
path-sum.js
75 lines (70 loc) · 1.9 KB
/
path-sum.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
* Source: https://leetcode.com/problems/path-sum/
* Tags: [Tree,Depth-first Search]
* Level: Easy
* Updated: 2015-04-24
* Title: Path Sum
* Auther: @imcoddy
* Content: 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.
*
*
* For example:
* Given the below binary tree and sum = 22,
*
* 5
* / \
* 4 8
* / / \
* 11 13 4
* / \ \
* 7 2 1
*
*
*
* return true, as there exist a root-to-leaf path 5->4->11->2 which sum is 22.
*/
/**
* Definition for binary tree
* function TreeNode(val) {
* this.val = val;
* this.left = this.right = null;
* }
*/
/**
* This one is a bit tricky, as it includes test case like ({}, 0)
* @param {TreeNode} root
* @param {number} sum
* @return {boolean}
*/
var hasPathSum = function(root, sum) {
if (!root) return false;
if (!root.left && !root.right) { // check leaf
return sum === root.val;
} else { // continue DFS
return hasPathSum(root.left, sum - root.val) || hasPathSum(root.right, sum - root.val);
}
};
/**
* Memo:
* Complex: O(n)
* Runtime: 132ms
* Tests: 114 test cases passed
* Rank: S
* Updated: 2015-10-05
*/
function hasPathSum(root, sum) {
if (!root) return false;
if (!root.left && !root.right) return sum === root.val;
sum = sum - root.val;
return hasPathSum(root.left, sum) || hasPathSum(root.right, sum);
}
/**
* Memo: if hasPathSum(root, sum) is true, then left or right will has a pathSum values sum-root.val.
* Complex: O(n)
* Runtime: 144ms
* Tests: 114 test cases passed
* Rank: A
*/
var hasPathSum = function(root, sum) {
return root ? (!root.left && !root.right) ? sum === root.val : (hasPathSum(root.left, sum - root.val) || hasPathSum(root.right, sum - root.val)) : false;
};