readme
来自「本程序是由JAVA实现的R-树新建、结点增加、删除功能。」· 代码 · 共 36 行
TXT
36 行
This is the final version of the RTree.Before using please the read the documents well.Sizes of RTreesAn RTree of Height 3 will haveMAX = 169*169*169 = 4826809 objects (0 root, 1 NonLeaf, 2 Leaf)MIN = 84* 84* 84 = 592704 objects (0 root, 1 NonLeaf, 2 Leaf)An RTree of Height 2 will haveMAX = 169*169 = 28561 objects (0 root , 1 Leaf)MIN = 84*84 = 7056 objects (0 root , 1 Leaf)An RTree of Height 1 will haveMAX = 169 = 169 objects (0 root)MIN = 84 = 84 objects (0 root)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?