[leetcode]669. Trim a Binary Search Tree寻找范围内的二叉搜索树

Posted stAr_1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode]669. Trim a Binary Search Tree寻找范围内的二叉搜索树相关的知识,希望对你有一定的参考价值。

根据BST的特点,如果小于L就判断右子树,如果大于R就判断左子树

递归地建立树

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);
        TreeNode res = new TreeNode(root.val);
        res.left = trimBST(root.left,L,R);
        res.right = trimBST(root.right,L,R);
        return res;
    }

 

以上是关于[leetcode]669. Trim a Binary Search Tree寻找范围内的二叉搜索树的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 669. Trim a Binary Search Tree

Leetcode 669. Trim a Binary Search Tree

[leetcode]Tree-669. Trim a Binary Search Tree

LeetCode 669. Trim a Binary Search Tree

[leetcode]669. Trim a Binary Search Tree寻找范围内的二叉搜索树

669. Trim a Binary Search Tree669.修剪二进制搜索树