?? partition_info.java
字號(hào):
/*
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;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -