⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 node.java

📁 一个java实现的R树
💻 JAVA
字号:
package rtree;/** * Interface for easy access to common Node information. * <p> * Created: Tue May 18 16:03:08 1999 * <p> * @author Hadjieleftheriou Marios * @version 1.001 */public interface Node {    // do not export any Set functions. We want to protect the state of the RTree from outside    // tampering. Give only basic Get methods.    //    public Object getChild(int i);    public AbstractNode getParent();    public HyperCube[] getHyperCubes();    public int getLevel();    public HyperCube getNodeMbb();        public String getUniqueId();    public boolean isLeaf();    public boolean isRoot();    public boolean isIndex();    public String toString();} // Node

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -