%%🖋 Edit in Excalidraw, and the light exported image%%

Properties

For a B-Tree of order

  • Every node has at most children.

  • Every node, except for the root and the leaves, has at least children (i.e. rounded up)

  • The root node has at least two children (unless it is the only node)

  • All leaves appear on the same level.

  • A non-leaf node with children contains keys.

  • A B-Tree is still a type of search tree, so it has some properties enforced on child nodes:

  • #todo

Resources