8
votes
6answers
2k views
What is a good open source B-tree implementation in C?
I am looking for a lean and well constructed open source implementation of a B-tree library written in C. It needs to be under a non-GPL license so that it can be used in a commercial application. …
3
votes
3answers
109 views
Larger than memory data structures and how they are typically handled
Say I have a file based data structure such as a B+ Tree. My understanding is that the data is expected to be stored on disk, but the index is usually loaded in memory. What if you have such a large …
2
votes
2answers
159 views
javascript binary search tree implementation
Anyone know of any good examples of a simple BTree implementation in Javascript? I have a bunch of "things" arriving randomly, and want to insert each one efficiently.
Ultimately, each new one will …
1
vote
4answers
539 views
What’s the difference between B-Tree and GiST index methods (in PostgreSQL)?
I have been working on optimizing my Postgres databases recently, and traditionally, I've only ever use B-Tree indexes. However, I saw that GiST indexes suport non-unique, multicolumn indexes, in the …
0
votes
3answers
55 views
Does anyone know where I might find a file based multi-way B-Tree Class for c#?
I need to implement a file based multi-way B-Tree Class for c#. There is similar functionality available for C++ and C but I want to use it in C#. It also need to be available as source code as I wish …
0
votes
3answers
159 views
Is there an API to draw a B-TREE?
Hi there,
That's a simple question: is there an API to draw a B-tree in Java? I just dont want to spend much time reinventing the wheel. I am not having trouble with the algorithm per si, mine works …
