-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathcousins_in_binary_tree.go
43 lines (40 loc) · 1011 Bytes
/
cousins_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
package problem993
import "github.com/awesee/leetcode/internal/kit"
// TreeNode - Definition for a binary tree node.
type TreeNode = kit.TreeNode
/**
* Definition for a binary tree node.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
func isCousins(root *TreeNode, x int, y int) bool {
xp, yp, xd, yd, depth := 0, 0, 0, 0, 0
queue := []*TreeNode{root}
for l := len(queue); l > 0 && xd == 0 && yd == 0; l = len(queue) {
for _, node := range queue {
if node.Left != nil {
if node.Left.Val == x {
xp, xd = node.Val, depth+1
} else if node.Left.Val == y {
yp, yd = node.Val, depth+1
} else {
queue = append(queue, node.Left)
}
}
if node.Right != nil {
if node.Right.Val == x {
xp, xd = node.Val, depth+1
} else if node.Right.Val == y {
yp, yd = node.Val, depth+1
} else {
queue = append(queue, node.Right)
}
}
}
depth, queue = depth+1, queue[l:]
}
return xp != yp && xd == yd
}