Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 449 Bytes

README.md

File metadata and controls

8 lines (8 loc) · 449 Bytes

B-Tree-Exercise

This is an implementation of BPlusTree.


  • Myshell.c 提供用户交互功能,支持init, insert, update, search, remove, write 等功能。
  • BPlusTree.h 定义了所需要用的数据结构,声明了接口。
  • BPlusTree.c 实现了在头文件中声明的接口。
  • data1是一个序列化到文件的B树。
  • test_insert.c 和 test_serialize.c分别测试了全内存增删改查、序列化反序列化函数。