partition_info.java
来自「用java语言实现的rtree空间索引技术」· Java 代码 · 共 33 行
JAVA
33 行
/*
COMP 630C project
Re-implementation of R+ tree
Group member:
Cheng Wing Hang, Nelson
Cheung Kwok Ho, Steven
Ngai Ming Wai, Ryan
Shiu Hoi Nam
Tsui Chi Man
*/
import java.*;
// Partition_info: Stores the returned node and a set of MBRs from partition
public class Partition_info {
node R ; // a new node created by partition
LIST S ; // Head of a list of MBRs
float cut ; // the cut value
char xy ; // showing an x-cut or y-cut
float xcut;
float ycut;
public Partition_info()
{
this.R = new node() ;
this.S = new LIST() ;
xcut=-1;
ycut=-1;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?