名词
中文翻译:二进制排序树
同义词:
['binary search tree', 'binary searchtree', 'binary search tree']
例句:
-
1. The binary search tree is adata structure that uses binary search to findthe minimum or maximum element in a sortedarray.
二分查找树是一种使用二分查找来在有序数组中查找最小或最大元素的数据处理结构。
-
2. In binary searchtrees, each node contains only one child, which makes it easy to traversethe tree and perform operations like insertion anddeletion.
在二分查找树中,每个节点只包含一个子节点,这使得遍历树和执行插入和删除操作变得容易。
-
3. The binary search tree is usedin many applications, such as database indexing and file organization.
二分查找树在许多应用中都有使用,例如数据库索引和文件组织。