forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Time: O(n) | ||
# Space: O(h) | ||
|
||
# Definition for a binary tree node. | ||
# class TreeNode(object): | ||
# def __init__(self, x): | ||
# self.val = x | ||
# self.left = None | ||
# self.right = None | ||
|
||
class Solution(object): | ||
def splitBST(self, root, V): | ||
""" | ||
:type root: TreeNode | ||
:type V: int | ||
:rtype: List[TreeNode] | ||
""" | ||
if not root: | ||
return None, None | ||
elif root.val <= V: | ||
result = self.splitBST(root.right, V) | ||
root.right = result[0] | ||
return root, result[1] | ||
else: | ||
result = self.splitBST(root.left, V) | ||
root.left = result[1] | ||
return result[0], root |