LeetCode 938. Range Sum of BST 求二叉搜索树的区间和

一、题目
Given the root node of a binary search tree, return the sum of values of all nodes with value between L and R (inclusive).

The binary search tree is guaranteed to have unique values.

在这里插入图片描述
二叉搜索树:
在这里插入图片描述
二、代码
由于 BST 具有 左<根<右 的特点,所以就可以进行剪枝,
若当前结点值小于L,则说明其左子树所有结点均小于L,可以直接将左子树剪去;
同理,若当前结点值大于R,则说明其右子树所有结点均大于R,可以直接将右子树剪去。

否则说明当前结点值正好在区间内,将其值累加上,并分别对左右子结点调用递归函数即可

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public int rangeSumBST(TreeNode root, int L, int R) {
        if(root == null)
            return 0;
        
        if(root.val < L){
            return rangeSumBST(root.right, L, R);
        }
        if(root.val > R){
            return rangeSumBST(root.left, L, R);
        }
        
        return root.val +  rangeSumBST(root.left, L, R) + rangeSumBST(root.right, L, R);                                                          
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值