Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
@rohit: I have done some editing of your question to make it a less obvious candidate for "close as not a real question". If you do not like my changes, feel free to revert them. – Jørn Schou-Rode Apr 4 '10 at 15:06
Can you elaborate on what you're going to be using the data structure for? – Graphics Noob Apr 4 '10 at 15:55

4 Answers

up vote 7 down vote accepted

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:

A red-black tree is similar in structure to a B-tree of order 4, where each node can contain between 1 to 3 values and (accordingly) between 2 to 4 child pointers. In such B-tree, each node will contain only one value matching the value in a black node of the red-black tree, with an optional value before and/or after it in the same node, both matching an equivalent red node of the red-black tree [...]

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.

share|improve this answer
thanks for suggestion.. i will try to use your idea – rohit Apr 4 '10 at 14:58

jdbm has a very solid implementation of b+tree. Also h+tree which is an interesting related data structure.

share|improve this answer

I've had to implement my own and open sourced the code.

share|improve this answer
Haven't tested it but the split method was what I was looking for with every insert and remove. With only 2 elements this will occur almost all the time. Question: Do you shuffle the top level element? Say you have data from 1 -5000 (5000 for the sake of this comment) and you had the first element as 300, wouldn't it make sense to have that as closer to 2500? – Tejaswi Rana Feb 18 at 15:55
btw.. +1 for your answer. – Tejaswi Rana Feb 18 at 15:55
@TejaswiRana I've tested with 5000 elements (1-5000) and the root ended up with the 2048 value. The default implementation is 2-3 tree but that was just for testing purposes. You can pass in the order (minKeySize) of the tree in the constructor. – Justin Feb 18 at 16:13

You could try Electric's BTree (author page here).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.