标签:就会 时间复杂度 leetcode code 分析 复杂 时间 nod 应该
Q:给定一个二叉搜索树,同时给定最小边界L?和最大边界?R。通过修剪二叉搜索树,使得所有节点的值在[L, R]中 (R>=L) 。你可能需要改变树的根节点,所以结果应当返回修剪好的二叉搜索树的新的根节点。
A:
思路分析:
时间复杂度为O(n), 空间复杂度与树高成正比。
代码:
public TreeNode trimBST(TreeNode root, int L, int R) {
if (root == null)
return null;
if (root.val < L)
return trimBST(root.right, L, R);
if (root.val > R)
return trimBST(root.left, L, R);
root.left = trimBST(root.left, L, R);
root.right = trimBST(root.right, L, R);
return root;
}
标签:就会 时间复杂度 leetcode code 分析 复杂 时间 nod 应该
原文地址:https://www.cnblogs.com/xym4869/p/12909842.html