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

LeetCode 669. 修剪二叉搜索树(Trim a Binary Search Tree)

时间:2019-06-09 20:52:40      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:roo   problem   bin   uri   trim   bad   span   nod   strong   

669. 修剪二叉搜索树
669. Trim a Binary Search Tree

题目描述

LeetCode

LeetCode669. Trim a Binary Search Tree简单

Java 实现
TreeNode Class

public class TreeNode {
    int val;
    TreeNode left;
    TreeNode right;

    TreeNode(int x) {
        val = x;
    }
}
class Solution {
    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 669. 修剪二叉搜索树(Trim a Binary Search Tree)

标签:roo   problem   bin   uri   trim   bad   span   nod   strong   

原文地址:https://www.cnblogs.com/hglibin/p/10994693.html

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