码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode938. 二叉搜索树的范围和

时间:2021-01-14 11:04:51      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:style   range   nod   ret   null   div   color   +=   class   

题目

 1 class Solution {
 2 public:
 3     int sum = 0;
 4     int rangeSumBST(TreeNode* root, int low, int high) {
 5         dfs(root,low,high);
 6         return sum;
 7     }
 8     void dfs(TreeNode* root,int low,int high){
 9         if(root!=NULL){
10             dfs(root->left,low,high);
11             if(root->val >= low && root->val <= high) 
12                 sum += root->val; 
13             dfs(root->right,low,high);
14         }
15     }
16 };

 

LeetCode938. 二叉搜索树的范围和

标签:style   range   nod   ret   null   div   color   +=   class   

原文地址:https://www.cnblogs.com/fresh-coder/p/14272679.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!