IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 【算法leetcode每日一练】二叉搜索树的范围和 -> 正文阅读

[数据结构与算法]【算法leetcode每日一练】二叉搜索树的范围和



二叉搜索树的范围和:

给定二叉搜索树的根结点 root,返回值位于范围 [low, high] 之间的所有结点的值的和。

样例 1:

在这里插入图片描述

输入:
	root = [10,5,15,3,7,null,18], low = 7, high = 15
	
输出:
	32

样例 2:

在这里插入图片描述

输入:
	root = [10,5,15,3,7,13,18,1,null,6], low = 6, high = 10
	
输出:
	23

提示:

  • 树中节点数目在范围 [1, 2 * 1 0 4 10^4 104] 内
  • 1 <= Node.val <= 1 0 5 10^5 105
  • 1 <= low <= high <= 1 0 5 10^5 105
  • 所有 Node.val 互不相同

分析

  • 面对这道算法题目,二当家的陷入了沉思。
  • 遍历二叉搜索树是必然的,递归是最直观的方式。

题解

java

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    public int rangeSumBST(TreeNode root, int low, int high) {
        if (root == null) {
			return 0;
		}
		int val;
		if (root.val >= low
			&& root.val <= high) {
			// 根结点符合条件
			val = root.val;
		} else {
			val = 0;
		}
		int leftVal;
		if (root.val > low) {
			// 左子树可能大于等于low
			leftVal = rangeSumBST(root.left, low, high);
		} else {
			leftVal = 0;
		}
		int rightVal;
		if (root.val < high) {
			// 右子树可能小于等于high
			rightVal = rangeSumBST(root.right, low, high);
		} else {
			rightVal = 0;
		}
		return val + leftVal + rightVal;
    }
}

c

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     struct TreeNode *left;
 *     struct TreeNode *right;
 * };
 */


int rangeSumBST(struct TreeNode* root, int low, int high){
    if (root == NULL) {
        return 0;
    }
    int val;
    if (root->val >= low
        && root->val <= high) {
        // 根结点符合条件
        val = root->val;
    } else {
        val = 0;
    }
    int leftVal;
    if (root->val > low) {
        // 左子树可能大于等于low
        leftVal = rangeSumBST(root->left, low, high);
    } else {
        leftVal = 0;
    }
    int rightVal;
    if (root->val < high) {
        // 右子树可能小于等于high
        rightVal = rangeSumBST(root->right, low, high);
    } else {
        rightVal = 0;
    }
    return val + leftVal + rightVal;
}

c++

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
    int rangeSumBST(TreeNode* root, int low, int high) {
        if (root == nullptr) {
            return 0;
        }
        int val;
        if (root->val >= low
            && root->val <= high) {
            // 根结点符合条件
            val = root->val;
        } else {
            val = 0;
        }
        int leftVal;
        if (root->val > low) {
            // 左子树节点可能大于等于low
            leftVal = rangeSumBST(root->left, low, high);
        } else {
            leftVal = 0;
        }
        int rightVal;
        if (root->val < high) {
            // 右子树节点可能小于等于high
            rightVal = rangeSumBST(root->right, low, high);
        } else {
            rightVal = 0;
        }
        return val + leftVal + rightVal;
    }
};

python

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, val=0, left=None, right=None):
#         self.val = val
#         self.left = left
#         self.right = right
class Solution:
    def rangeSumBST(self, root: TreeNode, low: int, high: int) -> int:
        if root is None:
            return 0
        val = 0
        if root.val >= low and root.val <= high:
            # 根结点符合条件
            val = root.val
        left_val = 0
        if root.val > low:
            # 左子树可能大于等于low
            left_val = self.rangeSumBST(root.left, low, high)
        right_val = 0
        if root.val < high:
            # 右子树可能小于等于high
            right_val = self.rangeSumBST(root.right, low, high)
        return val + left_val + right_val
        

go

/**
 * Definition for a binary tree node.
 * type TreeNode struct {
 *     Val int
 *     Left *TreeNode
 *     Right *TreeNode
 * }
 */
func rangeSumBST(root *TreeNode, low int, high int) int {
    if root == nil {
		return 0
	}
	val := 0
	if root.Val >= low && root.Val <= high {
		// 根结点符合条件
		val = root.Val
	}
	leftVal := 0
	if root.Val > low {
		// 左子树可能大于等于low
		leftVal = rangeSumBST(root.Left, low, high)
	}
	rightVal := 0
	if root.Val < high {
		// 右子树可能小于等于high
		rightVal = rangeSumBST(root.Right, low, high)
	}
	return val + leftVal + rightVal
}

rust

// Definition for a binary tree node.
// #[derive(Debug, PartialEq, Eq)]
// pub struct TreeNode {
//   pub val: i32,
//   pub left: Option<Rc<RefCell<TreeNode>>>,
//   pub right: Option<Rc<RefCell<TreeNode>>>,
// }
//
// impl TreeNode {
//   #[inline]
//   pub fn new(val: i32) -> Self {
//     TreeNode {
//       val,
//       left: None,
//       right: None
//     }
//   }
// }
use std::rc::Rc;
use std::cell::RefCell;
impl Solution {
    pub fn range_sum_bst(root: Option<Rc<RefCell<TreeNode>>>, low: i32, high: i32) -> i32 {
        match root {
            Some(root) => {
                let mut root = root.borrow_mut();
                let val = if root.val >= low && root.val <= high {
                    root.val
                } else {
                    0
                };
                let leftVal = if root.val > low {
                    Self::range_sum_bst(root.left.take(), low, high)
                } else {
                    0
                };
                let rightVal = if root.val < high {
                    Self::range_sum_bst(root.right.take(), low, high)
                } else {
                    0
                };
                val + leftVal + rightVal
            },
            _ => 0
        }
    }
}

typescript

/**
 * Definition for a binary tree node.
 * class TreeNode {
 *     val: number
 *     left: TreeNode | null
 *     right: TreeNode | null
 *     constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
 *         this.val = (val===undefined ? 0 : val)
 *         this.left = (left===undefined ? null : left)
 *         this.right = (right===undefined ? null : right)
 *     }
 * }
 */

function rangeSumBST(root: TreeNode | null, low: number, high: number): number {
    if (!root) {
        return 0;
    }
    let val = 0;
    if (root.val >= low && root.val <= high) {
        // 根结点符合条件
        val = root.val;
    }
    let leftVal = 0
    if (root.val > low) {
        // 左子树可能大于等于low
        leftVal = rangeSumBST(root.left, low, high);
    }
    let rightVal = 0;
    if (root.val < high) {
        // 右子树可能小于等于high
        rightVal = rangeSumBST(root.right, low, high);
    }
    return val + leftVal + rightVal;
};

原题传送门:https://leetcode-cn.com/problems/range-sum-of-bst/


非常感谢你阅读本文~
欢迎【👍点赞】【?收藏】【📝评论】~
放弃不难,但坚持一定很酷~
希望我们大家都能每天进步一点点~
本文由 二当家的白帽子:https://le-yi.blog.csdn.net/ 博客原创~


  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-05-15 11:42:04  更:2022-05-15 11:42:37 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 1:45:26-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码