【LeetCode】938. 二叉搜索树的范围和
2019-08-20 本文已影响0人
秀叶寒冬
题目描述
给定二叉搜索树的根结点 root
,返回 L
和 R
(含)之间的所有结点的值的和。
二叉搜索树保证具有唯一的值。
示例
- 示例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
提示
- 树中的结点数量最多为
10000
个。 - 最终的答案保证小于
2^31
。
解答
- 自己答案
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public int rangeSumBST(TreeNode root, int L, int R) {
if(root.left==null&&root.right==null){
if(root.val>=L&&root.val<=R){
return root.val;
}else{
return 0;
}
}else if(root.left!=null&&root.right==null){
if(root.val>=L&&root.val<=R){
return rangeSumBST(root.left,L,R)+root.val;
}else{
return rangeSumBST(root.left,L,R);
}
}else if(root.left==null&&root.right!=null){
if(root.val>=L&&root.val<=R){
return rangeSumBST(root.right,L,R)+root.val;
}else{
return rangeSumBST(root.right,L,R);
}
}else{
if(root.val>=L&&root.val<=R){
return rangeSumBST(root.left,L,R)+rangeSumBST(root.right,L,R)+root.val;
}else{
return rangeSumBST(root.left,L,R)+rangeSumBST(root.right,L,R);
}
}
}
}
- 其它答案一
public int rangeSumBST(TreeNode root, int L, int R) {
if (root == null) {
return 0;
}
if (root.val < L) {
return rangeSumBST(root.right, L, R);
}
if (root.val > R) {
return rangeSumBST(root.left, L, R);
}
return root.val + rangeSumBST(root.left, L, R) + rangeSumBST(root.right, L, R);
}
- 其它答案二
class Solution {
public int rangeSumBST(TreeNode root, int L, int R) {
int ans = 0;
Stack<TreeNode> stack = new Stack();
stack.push(root);
while (!stack.isEmpty()) {
TreeNode node = stack.pop();
if (node != null) {
if (L <= node.val && node.val <= R)
ans += node.val;
if (L < node.val)
stack.push(node.left);
if (node.val < R)
stack.push(node.right);
}
}
return ans;
}
}