I am doing a project in which I require btree or b+tree data structure. Does anyone know of an existing implementation of btree or b+tree (with insert, delete, search algorithms)? It should accept string as input and form btree or b+tree of these string.
|
|
In the lack of details about the problem that you need to solve, I am going to allow myself to suggest an alternative solution that might solve your problem: use a red/black tree instead. The red/black tree can be thought of as a b-tree, as explained on Wikipedia:
Java has two built-in classes, TreeMap and TreeSet, providing red/black trees. None of these will take a string as input and grow a tree from it, but you might be able to implement something similar "around" one of those classes. |
||||
|
|
|
jdbm has a very solid implementation of b+tree. Also h+tree which is an interesting related data structure. |
|||
|
|
|
I've had to implement my own and open sourced the code. |
|||||||
|
|
You could try Electric's BTree (author page here). |
|||
|
|