Where can I find enough documentation to implement an R*-Tree? Specifically, I need to be able to:

  • Insert nodes
  • Remove nodes
  • Search for K nearest neighbours
  • Find all nearest neighbours within distance x.

Is there a single place where this algorithm is clearly documented? Or is there a clean, open source implementation I can study? Even better, if you can point me to a javascript implementation then my work is already done.

link|improve this question

3  
Why is the paper linked in the cited article insufficient for your needs? It contains a full algorithm description... – Mark Elliot Jan 17 '11 at 1:20
2  
@Mark E - The linked paper only describes one portion of the algorithm, relying on further citations for the remainder. Furthermore, I would probably find it easier to grok code rather than an academic paper. – fmark Jan 17 '11 at 1:29
That's fair, and you would've enhanced your question by providing that detail. FWIW, Wikipedia also cites some C++ code samples; I'll go out on a limb and just expect that that code doesn't meet your cleanliness and documentation standards, or something -- but that information might've been useful, too. – Mark Elliot Jan 17 '11 at 1:34
The gaps are probably answered by the R-Tree, on which the R*-Tree extends by improving various methods such as the splitting strategy and overflow handling. Did you also check the Guttman article? – Anony-Mousse Dec 18 '11 at 13:45
feedback

1 Answer

Found an R* Tree library on some website.

https://github.com/imbcmdth/RTree/raw/master/src/rtree.js

link|improve this answer
Awesome, who knew there was some else crazy enough to have done this already! – fmark Jan 17 '11 at 1:31
"r tree javascript" is a suggested result in Google. – Anonymous Jan 17 '11 at 1:32
Actually it is not an R*-Tree, but a regular R-tree. – Anony-Mousse Dec 18 '11 at 13:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.