質問

I got confused with the "m" symbol of R-Tree height (h) equation. What does this "m" represent? Is it minimum entry or Maximum entry? Here is the equation:

enter image description here

where,

N = Number of data objects

h = Maximum value for R-Tree Height

Thanks!

役に立ちましたか?

解決

R-trees, like B-trees, have a large branching factor that can be customized based on the block size of the disk or memory they're stored in. This branching factor is M, so the height of the tree is proportional to the base-M logarithm of N.

Hope this helps!

他のヒント

The number of entries of a node (except for the root) in the tree is between m and M, where m lies between [0, M/2]. Also, M is the maximum number of entries in a node, and it may differ for leaf and non-leaf nodes.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top