Notes / Tag

#data-structure

4 public notes use this tag.

Related

Related Categories

Concepts

Related Concepts

Concepts

  • Array1
  • Arrays1
  • Binary Tree1
  • Circular Linked List1
  • Tree1
  • Trees & Binary Trees1
  • 二叉树1
  • 循环链表1
  • 数组1
  • 1
  • 顺序表1

Notes

Notes Tagged data-structure

seedCS Fundamentals

树与二叉树

树(Tree) 是 n(n>=0) 个结点的有限集。n=0 时称为空树。 在任意一颗非空树中: 1. 有且仅有一个特定的称为根(Root)的结点。 2. 当n>1时,其余节点可分为m(m>0)个互不相交的有限集T1,T2,…,Tm,其中每个集合本身又是一棵树,并且称为根的子树。

Mar 13, 2026 / learning-note