二叉树(Binary tree)

中文含义: 二叉树是一种树状数据结构,它由节点和指向它们的两个分支组成。每个节点至多只有两个子节点,左子节点和右子节点。

英语词性: Noun

美式音标: /ˈbaɪnəri triː/

同义词: 二叉搜索树(Binary search tree), 二叉排序树(Binary Sorted Tree)

易混淆单词: Binary Search Tree (二叉搜索树), Balanced Tree(平衡树), Full binary tree(满二叉树)

双语例句:

  • The binary tree data structure is highly useful in computer science applications.
  • 二叉树数据结构在计算机科学的应用中非常有用。
  • Insertion and deletion operations in a binary tree take O(log n) time.
  • 在二叉树中插入和删除操作需要 O(log n) 的时间。
  • A binary search tree is a node-based binary tree data structure that has the following properties.
  • 二叉搜索树是一个基于节点的二叉树数据结构,具有以下特点。