-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCousins_in_Binary_Tree.py
44 lines (34 loc) · 1.4 KB
/
Cousins_in_Binary_Tree.py
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
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def __init__(self):
# To save the depth of the first node.
self.recorded_depth = None
self.is_cousin = False
def dfs(self, node, depth, x, y)-> bool:
if node is None:
return False
# Don't go beyond the depth restricted by the first node found.
if self.recorded_depth and depth > self.recorded_depth:
return False
if node.val == x or node.val == y:
if self.recorded_depth is None:
# Save depth for the first node.
self.recorded_depth = depth
# Return true, if the second node is found at the same depth.
return self.recorded_depth == depth
left = self.dfs(node.left, depth+1, x, y)
right = self.dfs(node.right, depth+1, x, y)
# self.recorded_depth != depth + 1 would ensure node x and y are not
# immediate child nodes, otherwise they would become siblings.
if left and right and self.recorded_depth != depth + 1:
self.is_cousin = True
return left or right
def isCousins(self, root: TreeNode, x: int, y: int) -> bool:
# Recurse the tree to find x and y
self.dfs(root, 0, x, y)
return self.is_cousin