-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path1080.Insufficient-Nodes-in-Root-to-Leaf-Paths.go
98 lines (84 loc) · 1.63 KB
/
1080.Insufficient-Nodes-in-Root-to-Leaf-Paths.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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// https://leetcode.com/problems/insufficient-nodes-in-root-to-leaf-paths/
//
// algorithms
// Medium (15.95%)
// Total Accepted: 951
// Total Submissions: 5,962
// beats 100.0% of golang submissions
package leetcode
/**
* Definition for a binary tree node.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
/**
* Definition for a binary tree node.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
type treeNodeEntry struct {
left bool
node *TreeNode
}
var stack []treeNodeEntry
func sufficientSubset(root *TreeNode, limit int) *TreeNode {
if root == nil {
return nil
}
if root.Left == nil && root.Right == nil {
if root.Val >= limit {
return nil
}
return root
}
stack = []treeNodeEntry{}
recursive(root, 0, limit)
if root.Left == nil && root.Right == nil {
return nil
}
return root
}
func recursive(node *TreeNode, sum, limit int) {
if node.Left == nil && node.Right == nil {
if sum+node.Val < limit {
deleteNode()
}
return
}
if node.Left != nil {
stack = append(stack, treeNodeEntry{
left: true,
node: node,
})
recursive(node.Left, sum+node.Val, limit)
stack = stack[:len(stack)-1]
}
if node.Right != nil {
stack = append(stack, treeNodeEntry{
left: false,
node: node,
})
recursive(node.Right, sum+node.Val, limit)
stack = stack[:len(stack)-1]
}
if node.Left == nil && node.Right == nil {
deleteNode()
}
}
func deleteNode() {
length := len(stack)
if length == 0 {
return
}
if stack[length-1].left {
stack[length-1].node.Left = nil
} else {
stack[length-1].node.Right = nil
}
}