Leetcode-938 Range Sum of BST(二叉搜索树的范围和)
Posted Asurudo Jyo の 倉 庫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode-938 Range Sum of BST(二叉搜索树的范围和)相关的知识,希望对你有一定的参考价值。
1 class Solution 2 { 3 public: 4 int rangeSumBST(TreeNode* root, int L, int R) 5 { 6 int result = 0; 7 if(root->left) 8 result += rangeSumBST(root->left, L, R); 9 if(root->right) 10 result += rangeSumBST(root->right, L, R); 11 12 if(root->val>=L && root->val<=R) 13 result += root->val; 14 15 return result; 16 } 17 };
以上是关于Leetcode-938 Range Sum of BST(二叉搜索树的范围和)的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode --- 938. Range Sum of BST 解题报告
[LeetCode] 938. Range Sum of BST
[LeetCode] 938. Range Sum of BST 二叉搜索树的区间和
Leetcode-938 Range Sum of BST(二叉搜索树的范围和)