home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Los Alamos National Laboratory
/
LANL_CD.ISO
/
software
/
compres
/
src
/
kdnode.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-10-29
|
160b
|
9 lines
struct KDTreeNode {
struct KDTreeNode *Left;
struct KDTreeNode *Right;
int *List;
int ListSize;
int KeyIndex;
float PartitionValue;
};