-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrange_sum_of_bst.go
69 lines (63 loc) · 1.42 KB
/
range_sum_of_bst.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
package main
// Definition for a binary tree node.
type TreeNode struct {
Val int
Left *TreeNode
Right *TreeNode
}
// func rangeSumBST(root *TreeNode, low int, high int) int {
// if root == nil {
// return 0
// }
// if root.Val < low {
// return rangeSumBST(root.Right, low, high)
// }
// if root.Val > high {
// return rangeSumBST(root.Left, low, high)
// }
// return root.Val + rangeSumBST(root.Right, low, high) + rangeSumBST(root.Left, low, high)
// }
func rangeSumBST(root *TreeNode, low int, high int) int {
var stack []TreeNode
stack = append(stack, *root)
var sum int = 0
for len(stack) != 0 {
var node *TreeNode = &stack[len(stack)-1]
if node == nil {
continue
}
if node.Val > low {
stack = append(stack, *node.Left)
}
if node.Val < high {
stack = append(stack, *node.Right)
}
if low <= node.Val && node.Val <= high {
sum += node.Val
}
}
return sum
}
/*
int rangeSumBST(TreeNode? root, int low, int high) {
List<TreeNode?> stk = [];
stk.add(root);
int sum = 0;
while (stk.isNotEmpty) {
TreeNode? n = stk.removeLast();
if (n == null) {
continue;
}
if (n.val > low) {
stk.add(n.left);
} // left child is a possible candidate.
if (n.val < high) {
stk.add(n.right);
} // right child is a possible candidate.
if (low <= n.val && n.val <= high) {
sum += n.val;
}
}
return sum;
}
*/