-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathanswer.py
57 lines (49 loc) · 1.88 KB
/
answer.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
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python3
#-------------------------------------------------------------------------------
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
#-------------------------------------------------------------------------------
# My brute force solution
class Solution:
def lowestCommonAncestor(self, root, p, q):
"""
:type root: TreeNode
:type p: TreeNode
:type q: TreeNode
:rtype: TreeNode
"""
if root.val == p.val or root.val == q.val:
return root
if self.search(root.left, p.val) and self.search(root.left, q.val):
return self.lowestCommonAncestor(root.left, p, q)
elif self.search(root.right, p.val) and self.search(root.right, q.val):
return self.lowestCommonAncestor(root.right, p, q)
else:
return root
def search(self, root, target):
if not root: return False
if root.val == target: return True
return self.search(root.left, target) or self.search(root.right, target)
#-------------------------------------------------------------------------------
# Optimal Solution
class Solution:
def lowestCommonAncestor(self, root, p, q):
if root == p or root == q:
return root
left = right = None
# Do DFS
if root.left:
left = self.lowestCommonAncestor(root.left, p, q)
if root.right:
right = self.lowestCommonAncestor(root.right, p, q)
# If found on both sides, the current node is the ancestor
if left and right:
return root
else:
# This will return the nonnone node
return left or right
#-------------------------------------------------------------------------------