-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathall_nodes_distance_k_in_binary_tree.go
86 lines (73 loc) · 1.71 KB
/
all_nodes_distance_k_in_binary_tree.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
package main
type TreeNode struct {
Val int
Left *TreeNode
Right *TreeNode
}
func parentChild(child *TreeNode, parent *TreeNode, mpp map[*TreeNode]*TreeNode) {
if child == nil {
return
}
if parent == nil {
parent = child
} else {
mpp[child] = parent
}
parentChild(child.Left, child, mpp)
parentChild(child.Right, child, mpp)
}
func distanceK(root *TreeNode, target *TreeNode, k int) []int {
mpp := make(map[*TreeNode]*TreeNode)
parentChild(root, nil, mpp)
q := []*TreeNode{}
visited := make(map[*TreeNode]bool)
ans := []int{}
q = append(q, target)
visited[target] = true
distance := 0
for len(q) > 0 {
size := len(q)
for i := 0; i < size; i++ {
temp := q[0]
q = q[1:]
leftChild := temp.Left
rightChild := temp.Right
if leftChild != nil && !visited[leftChild] {
q = append(q, leftChild)
visited[leftChild] = true
}
if rightChild != nil && !visited[rightChild] {
q = append(q, rightChild)
visited[rightChild] = true
}
if mpp[temp] != nil && !visited[mpp[temp]] {
q = append(q, mpp[temp])
visited[mpp[temp]] = true
}
if distance == k {
ans = append(ans, temp.Val)
}
}
distance++
if distance > k {
break
}
}
return ans
}
// func main() {
// // Test case
// root := &TreeNode{Val: 3}
// root.Left = &TreeNode{Val: 5}
// root.Right = &TreeNode{Val: 1}
// root.Left.Left = &TreeNode{Val: 6}
// root.Left.Right = &TreeNode{Val: 2}
// root.Right.Left = &TreeNode{Val: 0}
// root.Right.Right = &TreeNode{Val: 8}
// root.Left.Right.Left = &TreeNode{Val: 7}
// root.Left.Right.Right = &TreeNode{Val: 4}
// target := root.Left
// k := 2
// result := distanceK(root, target, k)
// fmt.Println(result) // Output: [7, 4]
// }