669. Trim a Binary Search Tree
Input:
1
/ \
0 2
L = 1
R = 2
Output:
1
\
2Input:
3
/ \
0 4
\
2
/
1
L = 1
R = 3
Output:
3
/
2
/
1Last updated
Input:
1
/ \
0 2
L = 1
R = 2
Output:
1
\
2Input:
3
/ \
0 4
\
2
/
1
L = 1
R = 3
Output:
3
/
2
/
1Last updated
// Recursion
TreeNode* trimBST(TreeNode* root, int L, int R) { // time: O(n); space: O(h)
if (!root) return nullptr;
if (root->val >= L && root->val <= R) {
root->left = trimBST(root->left, L, R);
root->right = trimBST(root->right, L, R);
} else if (root->val < L) {
root = trimBST(root->right, L, R);
} else if (root->val > R) {
root = trimBST(root->left, L, R);
}
return root;
}// Iteration
TreeNode* trimBST(TreeNode* root, int L, int R) { // time: O(n); space: O(1)
if (!root) return nullptr;
while (root->val < L || root->val > R) {
root = root->val < L ? root->right : root->left;
}
TreeNode* cur = root;
while (cur) {
while (cur->left && cur->left->val < L) {
cur->left = cur->left->right;
}
cur = cur->left;
}
cur = root;
while (cur) {
while (cur->right && cur->right->val > R) {
cur->right = cur->right->left;
}
cur = cur->right;
}
return root;
}