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分别测试了全内存增删改查、序列化反序列化函数。