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
|
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 |
||||
|
|
|
R-trees and kd-trees are based on similar ideas (space partitioning based on axis-aligned regions), but the key differences are:
(There are lots of similar kinds of tree structures for partitioning space: quadtrees, BSP-trees, R*-trees, etc. etc.) |
|||
|
|
|
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. |
|||
|
|
|
They are actually quite different. They serve similar purpose, and they both are trees, but that is about all they have in common.
|
|||
|
|