Does anyone have a BTree Implementation in Java which you could share
with me?? I have spent atleast a few hours searching google, with no
luck.. In particular I need the insert method..
Thanks for your help
Oliver Wong - 07 Nov 2006 18:59 GMT
> Does anyone have a BTree Implementation in Java which you could share
> with me?? I have spent atleast a few hours searching google, with no
> luck.. In particular I need the insert method..
When I google for "java btree" I get
http://www.koders.com/java/fidDD507AA710FB8CFA6B60DD4D21C20DD94DB821E2.aspx?s=btree
- Oliver
zm5 - 07 Nov 2006 21:18 GMT
> > Does anyone have a BTree Implementation in Java which you could share
> > with me?? I have spent atleast a few hours searching google, with no
[quoted text clipped - 4 lines]
>
> - Oliver
That implementation is "messy".. But thanks, I could not even find that
:)..
Anyone else?
bugbear - 08 Nov 2006 10:01 GMT
> Does anyone have a BTree Implementation in Java which you could share
> with me?? I have spent atleast a few hours searching google, with no
> luck.. In particular I need the insert method..
Btree (or things with similar performance) is built
into almost and DBMS.
So it's normal to just use a DBMS.
Hence the dearth of what you're looking for.
BugBear
Richard Wheeldon - 08 Nov 2006 19:23 GMT
> Does anyone have a BTree Implementation in Java which you could share
> with me??
http://www.oracle.com/database/berkeley-db/index.html
Richard