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