I look at the definition of KD-tree and R-tree, it seems that they are almost the same.

Could anyone tell me what's the difference between KD-tree and R-tree? Thanks

link|improve this question

62% accept rate
feedback

2 Answers

R-trees and kd-trees are based on similar ideas (space partitioning based on axis-aligned regions), but the key differences are:

  • Nodes in kd-trees represent separating planes, whereas nodes in R-trees represent bounding boxes.
  • kd-trees partition the whole of space into regions whereas R-trees only partition the subset of space containing the points of interest.
  • kd-trees represent a disjoint partition (points belong to only one region) whereas the regions in an R-tree may overlap.

(There are lots of similar kinds of tree structures for partitioning space: quadtrees, BSP-trees, R*-trees, etc. etc.)

link|improve this answer
feedback

A major difference between the two not mentioned by Gareth Rees is that Kd trees are only efficient in bulk-loading situations. once built, modifiying or rebalancing a Kd-tree is non-trivial. R trees do not suffer from this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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