-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
-
思路
- dfs recursive
-
刷15mins
-
刷5mins
// time O(N)
// espace O(N)
public TreeNode trimBST(TreeNode root, int low, int high) {
if (root == null) {
return root;
}
if (root.val > high) {
return trimBST(root.left, low, high);
}
if (root.val < low) {
return trimBST(root.right, low, high);
}
root.left = trimBST(root.left, low, high);
root.right = trimBST(root.right, low, high);
return root;
}