LeetCode

二叉搜索树的范围和

2019-06-13  本文已影响0人  习惯了_就好

给定二叉搜索树的根结点 root,返回 L 和 R(含)之间的所有结点的值的和。

二叉搜索树保证具有唯一的值。

示例 1:

输入:root = [10,5,15,3,7,null,18], L = 7, R = 15
输出:32

示例 2:

输入:root = [10,5,15,3,7,13,18,1,null,6], L = 6, R = 10
输出:23

提示:

树中的结点数量最多为 10000 个。
最终的答案保证小于 2^31。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/range-sum-of-bst
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

/**
 * 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;
        else if(root.val < L) return rangeSumBST(root.right,L,R);//当前值比左边界小,只能去计算右子树的值了
        else if(root.val > R) return rangeSumBST(root.left,L,R);//当前值比右边界还大,只能去计算左子树的值了
        else return (root.val + rangeSumBST(root.left,L,R) + rangeSumBST(root.right,L,R));//当前值在边界范围内,累加当前值,并计算它的左右子树
    }
    
   
}

上一篇下一篇

猜你喜欢

热点阅读