Tagged Questions
8
votes
1answer
453 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 ...
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
3answers
432 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
525 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
249 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 ...
2
votes
0answers
123 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? ...
2
votes
2answers
261 views
Implement a presistent B-Tree
I'm interested to implement a presistent B-Tree using either c++ or java, as I need to store some path expressions e.g. //scientist/person/... /[Albert Einstein].
I tried google, but I was not ...
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, ...
1
vote
4answers
300 views
Implementing a B-tree in java using generics
I have written my own 2-3-4 tree in java. Currently, my code looks like this:
public class tree234{
private class node{
Comparable data[]=new Comparable[3];
node next[]=new ...
1
vote
2answers
182 views
Print BTree by level
I am trying to create a Java applet that animates a BTree. I have code to create the tree but now I am trying to display it. I thought the easiest way would be to print by level but I can't figure ...
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
3answers
385 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
1answer
294 views
B+Tree on-disk implementation in Java
Does anyone know where to find a B+Tree on-disk implementation? I went through google forward and backward and unfortunately I couldn't find anything sensible. Other threads have suggested to maybe ...
0
votes
1answer
118 views
How do I implement a 2-3-4 tree?
Deleted old question and wrote a better one. So I had no idea of how am I supposed to do this, so I thought I was supposed to use a linked list, but it seemed like there would be limitations. I ...
0
votes
2answers
337 views
Existing File based implementation of java.util.Map
I'm working on a project that uses custom Map<String, Entry> (where Entry is a pair of ints) implementation based on B-tree to store from 10 to 100 millions of records, the code for this class ...
0
votes
2answers
225 views
B-Tree Revision
If we are looking for line intersections (horizontal and vertical lines only) and we have n lines with half of them vertical and no intersections then
Sorting the list of line end points on y value ...
0
votes
1answer
98 views
Why i am getting NullPointerException for this btree method?
i am writing code for btree algorithms. i am getting NullPointerException . why???? please somebody help me...!
public void insertNonFull(BPlusNode root,BPlusNode parent,String key)
{
int i=0;
...
0
votes
2answers
552 views
Serializing BTree to a file
I'm trying to implement a BTree. I'm pretty much done with the tree and works great for a smaller input which means I've implemented the tree in memory. Now I would like to play with large input for ...
0
votes
3answers
674 views
Is there an API to draw a B-TREE?
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 perfectly ...
-2
votes
3answers
71 views
changing two values at a time in java
How can I change two values concurrently. I am writing a code for b-tree in java. But i am unable to modify two variables at a time. Like in C , we do so by using pointers. But how to do so in java? I ...