搜索资源列表
avl_bplus
- 实现avl树和b+树以及用他们管理的数据库demo-achieve AVL tree and b tree and use their database management demo
02342103110
- B-树实现索引和快速查找-B-Tree indexing and quick search
BPlusTree
- B+树实现源码,JAVA语言,数据库索引技术-B + Tree source, Java language, database indexing technology
B_Tree
- 用控制台实现了经典的数据结构B树,可以通过测试文件.txt加载已有的B树,有插入,删除,查找的功能,加深对数据结构的理解。
源代码:B+算法,NTFS的排序算法
- 运用B+数算法,实现树性存储,探索ntfs的存储算法-use several algorithms to achieve sexual storage tree, explore ntfs storage algorithm
InverseIndex
- 使用B+树实现文件倒排索引,查找关键词染色,根据出现频率排序
b_plus_tree
- b+树的实现和测试,模拟磁盘文件工作。一门课程的project。-b+ tree realization and testing, analog disk paperwork. A curriculum project.
VC_BTree
- B树的vc可视化实现。拥有B树的常用操作,如插入,删除,查找等。-B Visualization of tree vc. B tree has a common operations such as insert, delete, search and so on.
BPlusTree
- 数据库课程上的Project,用B+树实现数据的快速外部检索。-Database programs on the Project, with a B+ tree, fast external retrieval of data.
BookManage
- 图书馆的图书管理系统,此系统为数据结构课程设计源代码,为B树实现。-Library' s library management system, the system data structure for curriculum design source code, for the B Tree implementation.
B
- B+树实现代码,C++实现插入,删除等功能-B+ tree implementation code, C++
B-Tree
- 这是一个关于b-树的程序,要求能够实现b-树的增删改插等基本操作-This is a b-tree program, required to achieve b-tree basic operations such as additions and deletions to change plug
BTree
- MFC实现的可视化B-树演示系统,包括新建、删除、插入、随机生成等功能-MFC to achieve B-tree visual demonstration system, including new, delete, insert, randomly generated functions
btree
- 用b树实现的一种文件管理,模拟b树的存储,对文件进行增删修改,等操作。-B Tree with a document management, simulation b tree storage, changes, additions or deletions to the documents, and other operations.
incert
- 数据库中,B+树索引的构造,此程序实现了200000个项目的插入!-Database, B+ tree index structure, the program achieved 200,000 into the project!
Based-b-Tree-library-system
- 基于b-树的图书管理系统 c++实现 希望对数据结构的学习有帮助!-B-tree Libraay system
B-Tree_Demo
- B树的实现 B+树的实现,数据库课上要求写的b+树的c++实现,可以进行插入查找删除等操作,代码简单,适合新手(c++)-We design classes require written b+ Tree c++ Achieve, can be inserted to find the deletion of such operations, the code is simple, suitable for novice
B+树
- 实现b+树索引功能,可以改变和调用。。。(Implementing the b+ tree index)
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:使用用例,因为
BT
- B树部分实现。在B-树中查找给定关键字的方法是,首先把根结点取来,在根结点所包含的关键字K1,…,Kn查找给定的关键字(可用顺序查找或二分查找法),若找到等于给定值的关键字,则查找成功;否则,一定可以确定要查找的关键字在Ki与Ki+1之间,Pi为指向子树根节点的指针,此时取指针Pi所指的结点继续查找,直至找到,或指针Pi为空时查找失败。(BTree data structrue)