Tagged Questions

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
468 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
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 ...
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 ...
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
4answers
2k views

AVL tree vs. B-tree

How is an AVL tree different from a B-tree?
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 ...
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
3answers
431 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
2answers
388 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
4answers
326 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 ...
2
votes
1answer
234 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
2answers
427 views

What are the differences between B-tree and B*-tree, except the requirement for fullness?

I know about this question, but it's about B-tree and B+-tree. Sorry, if there's similar for B*-tree, but I couldn't find such. So, what is the difference between these two trees? The wikipedia ...
2
votes
2answers
432 views

Btree implementation

I'm writing the model of database which is using the B+ tree datastructure. I know how to implement this structure on Java using only RAM. But I need to write data on the disk(each time when I write, ...
2
votes
1answer
142 views

B-trees that use redistribution on insertion

If I insert the letters A, G, I, and Y into a B-tree of order 4 (meaning 4 pointers and 3 elements in each node), I get the following B-tree. G / \ A IY Would it look any different if ...
2
votes
2answers
430 views

What is a B-tree page

I think I know what a B-tree is but what is a B-tree page?
2
votes
3answers
581 views

How are B Tree nodes typically represented?

I've been doing some brushing up on my B-Tree and 2-3-4 tree (B tree with order 4), and I'm attempting to implement this in C#. My question to you is, given that a B-Tree node can contains N-1 number ...
2
votes
4answers
197 views

Which datastructure is appropriate for this situation?

I'm trying to decide which datastructure to use to store key-value pairs when only features needed are insertion lookup Specifically, I don't need to be able to delete pairs, or iterate through ...
1
vote
0answers
40 views

How are red-black trees isomorphic to 2-3-4 trees?

I have a basic understanding of both red black trees and 2-3-4 trees and how they maintain the height balance to make sure that the worst case operations are O(n logn). But, I am not able to ...
1
vote
1answer
50 views

Why dont we use 2-3 or 2-3-4-5 trees?

I have a basic understanding of how 2-3-4 trees maintain the height balance property operation after operation to make sure even the worst case operations are O(n logn). But I do not understand it ...
1
vote
3answers
92 views

complexity of turning a sorted array to a 2-4 B tree

What is the complixety of turning a sorted array of size n to a legal 2-4 B tree? What would it be if the array wasn't sorted. I believe that the first answer should be O(logn) (As many splits that ...
1
vote
1answer
267 views

How to do B-Tree Insert

I am trying to insert 3 values into this B-Tree, 60, 61, and 62. I understand how to insert values when a node is full, and has an empty parent, but what if the parent is full? For example, when I ...
1
vote
1answer
179 views

Hybrid “Index-like” btree structure - can PostgreSQL do this?

I am new to PostgreSQL. I have a very unusual requirement for a hybrid database I need to build. From modules I've seen, it seems to me that the following is possible. I need to be able to add key - ...
1
vote
3answers
309 views

Optimal on-disk data structure for searching a file?

I've spent a couple of hours reading posts that were related to the question in a bid to try and come up with a solution, but I wasn't really successful in coming up with one. So here goes: I was ...
1
vote
2answers
224 views

innodb data structure

I believe I understand how the INNODB structures the table (by using clustered btree indexes=PK and the leafs containing the rows themselves). Secondary indexes using the same principle (btree ...
1
vote
3answers
384 views

B-Tree Implementation - shall I make the Node class a static member class or not?

I need to implement a B-Tree for University: I have an "outer" class B-Tree with attributes root and _degree. The class to represent the nodes is implemented as a static-member class: public class ...
1
vote
3answers
1k views

Difference between B Trees and 2-3-4 Trees

Could someone please explain to me the difference between B Trees and 2-3-4 Trees? And also how would you find the maximum and minimum height of each? Thanks
1
vote
1answer
756 views

Advantages of BTree+ over BTree [closed]

Possible Duplicate: B- trees, B+ trees difference What are the advantages/disadvantages of BTree+ over BTree? When should I prefer one over other? I'm also interested in knowing any real ...
0
votes
2answers
34 views

Which data structure should i use to represent a large amount of records each presents range of items?

I'm looking for software represenation for a very large amount of records ( more than 400K records) Each record has two keys . one for lower bound and one for upper bound. These number represent a ...
0
votes
2answers
76 views

min/max number of records on a B+Tree?

I was looking at the best & worst case scenarios for a B+Tree (http://en.wikipedia.org/wiki/B-tree#Best_case_and_worst_case_heights) but I don't know how to use this formula with the information I ...
0
votes
1answer
73 views

Databases: More questions about (B-Tree) indexes

I've been studying indexes and there are some questions that pother me and which I think important. If you can help or refer to sources, please feel free to do it. Q1: B-tree indexes can favor a ...
0
votes
0answers
316 views

Btree deletion code [closed]

Possible Duplicate: Segmentation fault in btree implementation Can anyone help me in Btree deletion code? I am not able to rearrange the tree after deletion. I got this code in net have ...
0
votes
2answers
339 views

Max and min number of keys in a B-tree

What is the maximum and minimum number of keys that can be stored in a B-tree of order 128 and height 3? For the maximum, here's what I did: You have a single root node. The maximum children a root ...
0
votes
3answers
214 views

How do you remove an element from a b-tree?

I'm trying to learn about b-tree and every source I can find seem to omits the discussion about how to remove an element from the tree while preserving the b-tree properties. Can someone explain the ...
0
votes
1answer
55 views

List sorted on key1, random access on key2

I have a list of touples {key1, key2} sorted according to key1 using a B+Tree. This structure resides in secondary memmory (HDD). I want to implement an algorithm which requires lists sorted on key1 ...
0
votes
1answer
191 views

How to find the number of levels in a B-tree [closed]

Possible Duplicate: Segmentation fault in btree implementation How can we find the to find the number of levels in a B-tree in the following code #include<stdio.h> ...
0
votes
3answers
107 views

Secondary keys in a B-tree

Let's say that there is a file that contains an unsorted list of student information, which includes a student ID number as well as other information. I want to make a program that retrieves student ...