forked from mickey0524/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path113.Path-Sum-II.go
50 lines (44 loc) · 971 Bytes
/
113.Path-Sum-II.go
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
// https://leetcode.com/problems/path-sum-ii/
//
// algorithms
// Medium (38.8%)
// Total Accepted: 204,612
// Total Submissions: 527,303
// beats 100.0% of golang submissions
package leetcode
/**
* Definition for a binary tree node.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
var res [][]int
func pathSum(root *TreeNode, sum int) [][]int {
res = [][]int{}
if root == nil {
return res
}
resursive(root, []int{}, sum, 0)
return res
}
func resursive(node *TreeNode, path []int, sum, cntS int) {
if node.Left == nil && node.Right == nil {
if cntS+node.Val == sum {
tmp := make([]int, len(path))
copy(tmp, path)
tmp = append(tmp, node.Val)
res = append(res, tmp)
}
return
}
path = append(path, node.Val)
if node.Left != nil {
resursive(node.Left, path, sum, cntS+node.Val)
}
if node.Right != nil {
resursive(node.Right, path, sum, cntS+node.Val)
}
path = path[:len(path)-1]
}