forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsplit-bst.cpp
More file actions
28 lines (27 loc) · 707 Bytes
/
split-bst.cpp
File metadata and controls
28 lines (27 loc) · 707 Bytes
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
// Time: O(n)
// Space: O(h)
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<TreeNode*> splitBST(TreeNode* root, int V) {
if (!root) {
return {nullptr, nullptr};
} else if (root->val <= V) {
const auto& result = splitBST(root->right, V);
root->right = result[0];
return {root, result[1]};
} else {
const auto& result = splitBST(root->left, V);
root->left = result[1];
return {result[0], root};
}
}
};