-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPathSum3.java
46 lines (43 loc) · 1.22 KB
/
PathSum3.java
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
/*https://leetcode.com/problems/path-sum-iii/*/
class Solution {
public int pathSum(TreeNode root, int targetSum) {
if (root == null)
return 0;
return get(root,targetSum)+pathSum(root.left,targetSum)+pathSum(root.right,targetSum);
}
public int get(TreeNode root, int target)
{
if (root == null)
return 0;
int result = 0;
if (root.val == target)
++result;
return result+get(root.left,target-root.val)+get(root.right,target-root.val);
}
}
/*https://practice.geeksforgeeks.org/problems/k-sum-paths/1/*/
class Solution
{
static int count = 0;
public void dfs(Node root,int k,Map<Integer,Integer> mp,int sum){
if (root == null) return;
sum += root.data;
if (map.containsKey(sum-k))
{
int n = map.get(sum-k);
count+=n;
}
map.put(sum,map.getOrDefault(sum,0)+1);
dfs(root.left,k,map,sum);
dfs(root.right,k,map,sum);
map.put(sum,map.get(sum)-1);
}
public int sumK(Node root, int k)
{
count = 0;
Map<Integer,Integer> map = new HashMap<>();
map.put(0,1);
dfs(root,k,map,0);
return count;
}
}