Tagged Questions
B-trees are a type of self balancing search tree where each node can hold multiple keys and all leaf nodes are the same distance from the root.
15
votes
8answers
9k 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. ...
10
votes
1answer
464 views
Red Black Tree versus B Tree
I have a project in which I have to achieve fast search, insert and delete operations on data ranging from megabytes to terabytes. I had been studying data structures of late and analyzing them. Being ...
8
votes
1answer
445 views
Lightweight B-tree library for Java?
Can anyone recommend a lightweight, fast, and hopefully stable B-tree (or similar) library for Java?
Essentially I'm looking for an on-disk map; something along the lines of BerkeleyDB JE, except I ...
8
votes
6answers
3k views
Looking for a disk-based B+ tree implementation in C++ or C
I am looking for a lightweight open source paging B+ tree implementation that uses a disk file for storing the tree.
So far I have found only memory-based implementations, or something that has ...
7
votes
5answers
288 views
Programming in the era of SSD
I am wondering how the oncoming SSD technology affects (mosty system) programming. Tons of questions arise, but here are some most obvious ones:
Can the speed of disk access be considered anywhere ...
7
votes
2answers
310 views
What are the advantages of T-trees over B+/-trees?
I explore the definitions of T-tree and B-tree/B+tree. From papers on the web I understand that B-trees perform better in hierarchical memory, such as disk drives and cached memory.
What I can not ...
7
votes
5answers
458 views
Using code from a book without plagiarizing
I have a book on data structures and programming, and I referenced it to implement a B-tree insertion function. I copied most of the algorithm and variable names from the code samples in the book, ...
6
votes
1answer
97 views
Unexpected Pointer Behaviour in C++
I'm having a problem with my pointers in C++, and it would be great if someone was able to share their expertise with me!
The output I'm getting is:
1:
2:
END: C
1:C
2:E
END: E
The output I was ...
6
votes
5answers
1k views
Best data structure for crossword puzzle search
I have a large database for solving crossword puzzles, consisting of a word and a description.
My application allows searching for words of a specific length and characters on specific positions (this ...
6
votes
3answers
1k views
When to choose RB tree, B-Tree or AVL tree?
As a programmer when should I consider using a RB tree, B- tree or an AVL tree?
What are the key points that needs to be considered before deciding on the choice?
Can someone please explain with a ...
6
votes
2answers
2k 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 ...
5
votes
6answers
100 views
Optimize mysql query using indexes
I have a problem with this query:
SELECT DISTINCT s.city, pc.start, pc.end
FROM postal_codes pc LEFT JOIN suspects s ON (s.postalcode BETWEEN pc.start AND pc.end)
WHERE pc.user_id = "username" ...
5
votes
2answers
96 views
reverse_iterator adapter
I'm trying to implement a reverse-iterator adaptor for my iterator and const_iterator classes with a little bit of trouble. If anyone could guide me through this, that would be greatly appreciated!
...
5
votes
2answers
484 views
Looking for a disk-bound b-tree example
Maybe my google-foo just isn't up to snuff, but I'm wanting to play with a b-tree alogrithm that is bound to disk. Since most tutorials and examples are on-memory, they assume random access memory in ...
5
votes
2answers
306 views
How btree is stored on disc?
I know how to implement btree in memory, but not clear about how to store btree in disc. I think there are two major difference:
Conversion between memory pointer and disc address, see this post.
...
5
votes
3answers
286 views
A particular problem with btree insertion
I have been playing with the very cool btree applet at slady.net. I'm having trouble understanding a particular behavior. Take a look at this starting state:
This particular state was arrived at by ...
5
votes
3answers
178 views
Do DB indexes take same amount of disc space as column data?
If I have a table column with data and create an index on this column, will the index take same amount of disc space as the column itself?
I'm interested because I'm trying to understand if b-trees ...
5
votes
3answers
296 views
Does anybody know how B-Tree got its name?
I'm reading CLRS 2nd and is studying B-Tree now.
CLRS claims that B-Tree naming is not clear yet: [Bayer, McCreight, 1972] doesn't offer the reason that B-Tree is named to "B-Tree".
I haven't ...
4
votes
2answers
164 views
How does couchdb retrieve all previous revisions?
From what I understand, CouchDB's Btree implementation actually uses Shadowing technique, and every update will produce new root, the following excerpts from this PDF (it looks like implementing a ...
4
votes
2answers
119 views
The order of b-trees
I'm studying for an exam, and came up on B-trees. Wikipedia describes a B-tree as a tree where the nodes have at least d and at most 2d keys and therefore at most 2d+1 leafs. For example if d=1, it ...
4
votes
3answers
82 views
comparing databases and their locks
I have heavy transaction stuff going on and would like to gain information about how locks are implemented in current databases. Working on zero budget my choise is limited to mysql 5.5 and postgres ...
4
votes
4answers
2k views
4
votes
3answers
3k views
Existing implementation of Btree or B+tree in Java
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 ...
4
votes
2answers
212 views
Do btrees and b+trees only store data at the leafs?
Do b trees and b+ trees only store data at their leafs? I am assuming that they use their internal nodes to search the required data.
Is that the case or do they store data in every node?
4
votes
1answer
3k views
how B-tree indexing works in mysql
my question is , when I create an index for a table in mysql, I see that the index_type is type BTREE . Now although I understand about btree(s), I do not quiet understand how it stores the index and ...
4
votes
3answers
2k views
C/C++: How to store data in a file in B tree
It appears to me that one way of storing data in a B-tree as a file can be done efficiently with C using binary file with a sequence (array) of structs, with each struct representing a node. One can ...
4
votes
6answers
716 views
Binary Search or Btree index Update problem
Imagine that you are handed a new book everyday from an author.
The book is a work in progress.
He does not tell you what he has changed or added.
Your job is to identify the changes and additions, ...
3
votes
3answers
35 views
Finding the height of the B-Tree of a table in SQL Server
Since database data is organized in 8k pages in a B-tree, and likewise for PK information information, it should be possible for each table in the database to calculate the height of the B-Tree. Thus ...
3
votes
1answer
108 views
Which is easier to implement: 2-3-4 Tree or Red-Black Tree?
The textbook I'm learning from (Lafore) presents Red-Black Trees first, and does not include any pseudo-code, although the associated algorithms as presented seems fairly complex, with many unique ...
3
votes
1answer
75 views
CouchDb and data writes
As I understand it CouchDb never overwrites a record but instead creates a new document with a new _rev. What happens in this scenario?
User A reads a document
User B reads the same document
User A ...
3
votes
2answers
406 views
Problem in B-tree (not B+/B*) implemented with files in C
i'm new here and first of all, i wanna apologize if i make errors in question. My problem is: i want to implement a B-tree in C, using a file to store the tree...my program reads 10000 strings of 10 ...
3
votes
3answers
430 views
Java built-in btree class?
Is there a java built in class for doing BTrees? I have a pretty simple requirement for school to create some trees and manipulate them. Just wondering if there is a built in class I should look at ...
3
votes
3answers
523 views
How to visually display a b-tree in java?
I'm implementing a B-Tree, and would like to display it in a simple UI (or text output) for debugging. What library would you recommend to do this as quickly as possible?
This is just meant as a ...
3
votes
1answer
1k views
berkeleydb - B-Tree versus Hash Table
I am trying to understand what should drive the choice of the access method while using a BerkeleyDB : B-Tree versus HashTable.
A Hashtable provides O(1) lookup but inserts are expensive (using ...
3
votes
2answers
384 views
B-Tree - I don't get the “minimal degree” thing
I'm trying to implement a B-Tree according to the chapter "B-Trees" in "Introduction To Algorithms"... what I don't quite get is the "minimal degree"... it says it's a number which expresses the ...
3
votes
2answers
203 views
Indexing count of buckets
So, here is my little problem.
Let's say I have a list of buckets a0 ... an which respectively contain L <= c0 ... cn < H items. I can decide of the L and H limits. I could even update them ...
3
votes
2answers
486 views
Paged binary trees vs. AVL trees and/or B-trees
How are paged binary trees different from AVL trees and/or B-trees?
3
votes
1answer
203 views
Any good guides and/or advice for indexing my objects in zodb?
I'm going to be writing a general object class for use with zodb. These objects will add themselves to a btree index once they are persisted to the zodb object graph.
I've never really worked with ...
3
votes
2answers
597 views
What data is actually stored in a B-tree database in CouchDB?
I'm wondering what is actually stored in a CouchDB database B-tree? The CouchDB: The Definitive Guide tells that a database B-tree is used for append-only operations and that a database is stored in a ...
3
votes
1answer
406 views
Are there any B-tree programs or sites that show visually how a B-tree works
I found this website that lets you insert and delete items from a B-tree and shows you visually what the B-tree looks like:
java b-tree
I'm looking for another website or program similar to this. ...
3
votes
1answer
248 views
How can I do block-oriented disk I/O with Java? Or similar for a B+ tree
I would like to implement an B+ tree in Java and try to optimize it for disk based I/O. Is there an API for accessing individual disk blocks from Java? or is there an API that can do similar ...
3
votes
4answers
325 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 ...
3
votes
3answers
236 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
1answer
87 views
Are there any tools to estimate index size in MongoDB?
I'm looking for a tool to get a decent estimate of how large a MongoDB index will be based on a few signals like...
how many documents in my collection
the size of the indexed field(s)
the size of ...
2
votes
0answers
114 views
C++ b-tree merge
As an example, I've the following b-tree model with each node containing tag/value pairs. The tree indicates precedence (or priority), with the root being highest, down to the leaves as lowest (but ...
2
votes
1answer
49 views
Distributed Network B+trees
I would like to build a B+tree that spans a multi-node
computer network (internal subnet of Linux PCs) for
elastic massive storage. Range scans are important.
Is this basically the underlying data ...
2
votes
2answers
76 views
C++ post-increment operator overload in iterators (compiling with -Wall -Werror)
I'm currently creating my own iterator for a b-tree, and I'm stuck on how to implement the post-increment operator without the compiler complaining.
The error message is as follows, and is expected ...
2
votes
3answers
200 views
bTree vs HashTable
In MySQL an index type is BTree, and access an element in a btree is in logarithmic amortized time.
Accessing an element in an HashTable is in O(1).
Why an HashTable is not used in order to access ...
2
votes
1answer
231 views
B-Trees / B+Trees and duplicate keys
I'm investigating the possibility of putting together a custom storage scheme for my application. It's worth the effort of potentially reinventing the wheel, I think, because both performance and ...
2
votes
0answers
122 views
Kyoto Cabinet: is there a way to do a search for nearest key?
I'd love to be able to use one of Kyoto Cabinet's tree datastructures, but I need the ability to return the nearest key.
Ie I have
1,100
3,500
7,1000
And given 2, I'd return 1.
Is this possible? ...