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. ...
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 ...
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 ...
3
votes
2answers
407 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 ...
1
vote
3answers
293 views
Printing B+ tree in C
I have implemented B+ tree in C and wants to print its keys in the tree form. I followed the following algorithms for printing it but getting some segmentation fault.
Starting from root, first of ...
1
vote
3answers
161 views
Accessing node data through POSIX tdelete()
The manpage for the POSIX binary tree functions includes the following statements:
tdelete() returns a pointer to the parent of the item deleted, or NULL if the item was not found.
tdelete() ...
1
vote
2answers
800 views
How to implement B+ Tree for file systems?
I have a text file which contains some info on extents about all the files in the file system, like below
C:\Program Files\abcd.txt
12345 100
23456 200
C:\Program Files\bcde.txt
56789 50
26746 300
...
...
0
votes
0answers
124 views
when should a Btree be used [closed]
When should a btree be used is there any advantage of using Btree ? and in real time which application uses btree?
Note: Btree is not a binary tree
0
votes
0answers
314 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
0answers
95 views
can anyone help in correcting the code [closed]
Possible Duplicate:
Segmentation fault in btree implementation
I have a Btree code which was giving segmentation fault i have found the reason for segmentation fault it is for overflow can ...
0
votes
1answer
203 views
Segmentation fault in btree implementation
Can anyone please help in removing this segmentation fault. I am working on this code for a week still unable to debug this. This code is a Btree implementation. The insertion part is working properly ...
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
2answers
439 views
A B+tree simple implementation in C
I'm working on a fun project where I need a simple key/value store that uses B+Trees. I studied them some years ago, and to be honest, I don't want to reinvent the wheel, so I'm looking for a simple ...
0
votes
1answer
291 views
how to implement the string key in B+ Tree?
Many b+ tree examples are implemented using integer key, but i had seen some other examples using both integer key and string key, i learned the b+ tree basis, but i don't understand how string key ...