码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-02-03 20:04:06      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:code   pos   log   post   ==   nod   color   blog   search   

根据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寻找范围内的二叉搜索树

标签:code   pos   log   post   ==   nod   color   blog   search   

原文地址:https://www.cnblogs.com/stAr-1/p/8410452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!