很简单的一道
/**
* 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:
int rangeSumBST(TreeNode* root, int L, int R) {
if(!root) return 0;
return root->val<= R && root->val >=L ? root->val + rangeSumBST(root->left,L,R) + rangeSumBST(root->right,L,R) : rangeSumBST(root->left,L,R) + rangeSumBST(root->right,L,R);
}
};
//今天去看了少年的你,演魏莱的演员真的演得好好!在影院真有一种恨得牙痒痒的感觉。