Skip to content

Latest commit

 

History

History
74 lines (52 loc) · 1.74 KB

938-range-sum-of-bst.md

File metadata and controls

74 lines (52 loc) · 1.74 KB

938. Range Sum of BST - 二叉搜索树的范围和

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

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

 

示例 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

 

提示:

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

题目标签:Tree / Recursion

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
cpp 152 ms 41.2 MB
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    void dfs(TreeNode* root, int L, int R, int& ret) {
        if (!root) return;
        if (root->val >= L && root->val <= R)
            ret += root->val;
        dfs(root->left, L, R, ret);
        dfs(root->right, L, R, ret);
    }

    int rangeSumBST(TreeNode* root, int L, int R) {
        int res = 0;
        dfs(root, L, R, res);
        return res;
    }
};