搜索资源列表
BPlusTree
- B+树实现源码,JAVA语言,数据库索引技术-B + Tree source, Java language, database indexing technology
bplustree
- 支持并发访问的B+树-support concurrent visit the B-tree
BPlusTree
- B+树的演示程序,在vs.net 2003 下编译通过。是数据库基础的课程设计。
BPlusTree.zip
- B+tree by C++. It used template,B+tree by C++. It used template
Bplustree
- b+tree 的插入和查询操作,代码比较简练,效率高。缺少删除操作。-b+ tree insertion and query operation, code relatively simple and efficient. The lack of deletion.
bplustree
- b+树算法的c语言实现,编译后运行,可以测试b+树的生成、插入、删除、搜索-b+ tree algorithm c-language implementation, compiled to run, you can test the generation of b+ tree, insert, delete, search
BPlusTree
- B+树的实现,包括数据的插入、删除、B树的旋转-B+ tree implementation, including data insert, delete, B tree rotation
bPlusTree
- B+树,用JAVA语句实现了一个B+树,包括B+树的构成,B+树的增删查改-B+ tree, using JAVA statement to achieve a B+ tree, including the composition of B+ tree, B+ tree of additions and deletions to change search
bplustree B+树
- B+tree
BPlusTree
- 数据库课程上的Project,用B+树实现数据的快速外部检索。-Database programs on the Project, with a B+ tree, fast external retrieval of data.
bplustree
- C语言实现B+树的操作 建立 插入 删除 查找 合并 分裂-C language to the operation of the establishment of the B+ tree insertion and deletion Find merge split
BPlusTree
- 生成windows窗口,编辑之中能够显示B+树格式,并能实现基本的插入删除工作-Generate windows window, edited and can show B+ tree format, and can achieve basic work of the insertion deletion
BPlusTree
- B+树实现的完全代码。B+树定义文件,本程序实行一个简单的B+树 (1) 一个v阶的B+树由根结点、内部结点和叶子结点组成。 (2) 根结点可以是叶子结点,也可以是有两个或更多子树的内部结点。 (3) 每个内部结点包含v - 2v个键。如果一个内部结点包含k个键,则有且只有k+1个指向子树的指针。 (4) 叶子结点总是在树的同一层上。 (5) 如果叶子结点是主索引,它包含一组按键值排序的记录;如果叶子结点是从索引,它包含一组短记录,每个短记录包含一个键以及指向实际记录的
201205552_Assignment.tar
- bplustree implementation
BPlusTree
- 编程实现B+树,功能要求: ① 插入关键字 ② 删除关键字 ③ 查找关键字-Programming implementation of B+ tree, functional requirements: 1) insert the key word (2) the delete key (3) to find the key
bplustree
- c语言实现的B+树,数据都在内存中,实现了插入和删除-bplustree in c
BTree-and-BPlusTree-Realize-master
- B+树、b-树的代码实现,采用了C/C++来写 # 文件说明: 1.Tree.h:B树和B+树的通用接口,虚基类。BTree和BPlusTree都继承它,只有BPlusTree才有linear函数 2.BTree.h,BTree.cpp:B树的声明、实现代码 3.BPlusTree.h,BPlusTree.cpp:B+树的声明、实现代码,注:大多数的函数,B和B+都是一样的,但是我还是分开写了,比如输出函数 4.Context.h:策略方法的实现 5.mian.cpp:使用用例,因为