-
Notifications
You must be signed in to change notification settings - Fork 3
/
isCousins.js
62 lines (51 loc) · 1.16 KB
/
isCousins.js
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
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @param {number} x
* @param {number} y
* @return {boolean}
*/
const isCousins = function (root, x, y) {
const queue = [root]
let depthNodeCount = 1
let parentNode = null
while (queue.length !== 0) {
const node = queue.shift()
depthNodeCount--
if (node.left) {
if (node.left.val === x || node.left.val === y) {
if (parentNode) {
return true
}
parentNode = node
}
queue.push(node.left)
}
if (node.right) {
if (node.right.val === x || node.right.val === y) {
if (parentNode === node) {
return false
}
if (parentNode) {
return true
}
parentNode = node
}
queue.push(node.right)
}
if (depthNodeCount === 0) {
if (parentNode) {
return false
}
depthNodeCount = queue.length
}
}
}
module.exports = isCousins