# b_plus-tree **Repository Path**: WZFlik/b_plus-tree ## Basic Information - **Project Name**: b_plus-tree - **Description**: b+树的存储 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-14 - **Last Updated**: 2022-07-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: 数据结构-tree ## README # b_plus-tree ## 介绍 编码实现B+树存储结构,数据存储方式为内存存放,支持插入、删除、查询操作, 实现后将5000万行KV数据(K为整数,V为1-100长度的字符串)导入其中, 随机抽1000个K,在B+树中进行查询V,每条记录查询100次,求平均值。 ## 结构 tree2包下为一b+树的完整代码拿来即用