Binary Search Tree

最后更新于:2022-04-02 01:11:43

# Binary Search Tree - 二叉搜索树 二叉搜索树的定义及简介在 [Binary Search Trees](http://algorithm.yuanbin.me/zh-cn/basics_data_structure/binary_search_tree.html) 中已经有所介绍。简单来说就是当前节点的值大于等于左子结点的值,而小于右子节点的值。
';