We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
938. 二叉搜索树的范围和
/** * Definition for a binary tree node. * function TreeNode(val) { * this.val = val; * this.left = this.right = null; * } */ /** * @param {TreeNode} root * @param {number} L * @param {number} R * @return {number} */ var sum; var rangeSumBST = function(root, L, R) { sum = 0; dfs(root, L, R); return sum; }; function dfs(root, L, R) { if(root == null) { return; } if(root.val >= L && root.val <= R) { sum += root.val; } dfs(root.left, L, R); dfs(root.right, L, R); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
938. 二叉搜索树的范围和
The text was updated successfully, but these errors were encountered: