home *** CD-ROM | disk | FTP | other *** search
/ Los Alamos National Laboratory / LANL_CD.ISO / software / compres / src / kdnode.h < prev    next >
C/C++ Source or Header  |  1991-10-29  |  160b  |  9 lines

  1. struct KDTreeNode  {
  2.     struct KDTreeNode *Left;
  3.     struct KDTreeNode *Right;
  4.     int *List;
  5.     int ListSize;
  6.     int KeyIndex;
  7.     float PartitionValue;
  8. };
  9.