Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 297 Bytes

bplus_tree.md

File metadata and controls

7 lines (4 loc) · 297 Bytes

B+ Tree

在学习数据库的时候接触到这个树结构,以前考研的时候知道这个结构的规则,但是没有动手写过代码。

也是一颗平衡树,只不过考虑到外存的特性,每个节点包含n个数据点。

看看有没有机会手写一下这个结构。