kd_tree.cpp
上传用户:chinafayin
上传日期:2022-04-05
资源大小:153k
文件大小:15k
源码类别:

并行计算

开发平台:

Visual C++

  1. //----------------------------------------------------------------------
  2. // File: kd_tree.cpp
  3. // Programmer: Sunil Arya and David Mount
  4. // Description: Basic methods for kd-trees.
  5. // Last modified: 01/04/05 (Version 1.0)
  6. //----------------------------------------------------------------------
  7. // Copyright (c) 1997-2005 University of Maryland and Sunil Arya and
  8. // David Mount.  All Rights Reserved.
  9. // 
  10. // This software and related documentation is part of the Approximate
  11. // Nearest Neighbor Library (ANN).  This software is provided under
  12. // the provisions of the Lesser GNU Public License (LGPL).  See the
  13. // file ../ReadMe.txt for further information.
  14. // 
  15. // The University of Maryland (U.M.) and the authors make no
  16. // representations about the suitability or fitness of this software for
  17. // any purpose.  It is provided "as is" without express or implied
  18. // warranty.
  19. //----------------------------------------------------------------------
  20. // History:
  21. // Revision 0.1  03/04/98
  22. // Initial release
  23. // Revision 1.0  04/01/05
  24. // Increased aspect ratio bound (ANN_AR_TOOBIG) from 100 to 1000.
  25. // Fixed leaf counts to count trivial leaves.
  26. // Added optional pa, pi arguments to Skeleton kd_tree constructor
  27. // for use in load constructor.
  28. // Added annClose() to eliminate KD_TRIVIAL memory leak.
  29. //----------------------------------------------------------------------
  30. #include "kd_tree.h" // kd-tree declarations
  31. #include "kd_split.h" // kd-tree splitting rules
  32. #include "kd_util.h" // kd-tree utilities
  33. #include "../ANNperf.h" // performance evaluation
  34. //----------------------------------------------------------------------
  35. // Global data
  36. //
  37. // For some splitting rules, especially with small bucket sizes,
  38. // it is possible to generate a large number of empty leaf nodes.
  39. // To save storage we allocate a single trivial leaf node which
  40. // contains no points.  For messy coding reasons it is convenient
  41. // to have it reference a trivial point index.
  42. //
  43. // KD_TRIVIAL is allocated when the first kd-tree is created.  It
  44. // must *never* deallocated (since it may be shared by more than
  45. // one tree).
  46. //----------------------------------------------------------------------
  47. static int IDX_TRIVIAL[] = {0}; // trivial point index
  48. ANNkd_leaf *KD_TRIVIAL = NULL; // trivial leaf node
  49. //----------------------------------------------------------------------
  50. // Printing the kd-tree 
  51. // These routines print a kd-tree in reverse inorder (high then
  52. // root then low).  (This is so that if you look at the output
  53. // from the right side it appear from left to right in standard
  54. // inorder.)  When outputting leaves we output only the point
  55. // indices rather than the point coordinates. There is an option
  56. // to print the point coordinates separately.
  57. //
  58. // The tree printing routine calls the printing routines on the
  59. // individual nodes of the tree, passing in the level or depth
  60. // in the tree.  The level in the tree is used to print indentation
  61. // for readability.
  62. //----------------------------------------------------------------------
  63. void ANNkd_split::print( // print splitting node
  64. int level, // depth of node in tree
  65. ostream &out) // output stream
  66. {
  67. child[ANN_HI]->print(level+1, out); // print high child
  68. out << "    ";
  69. for (int i = 0; i < level; i++) // print indentation
  70. out << "..";
  71. out << "Split cd=" << cut_dim << " cv=" << cut_val;
  72. out << " lbnd=" << cd_bnds[ANN_LO];
  73. out << " hbnd=" << cd_bnds[ANN_HI];
  74. out << "n";
  75. child[ANN_LO]->print(level+1, out); // print low child
  76. }
  77. void ANNkd_leaf::print( // print leaf node
  78. int level, // depth of node in tree
  79. ostream &out) // output stream
  80. {
  81. out << "    ";
  82. for (int i = 0; i < level; i++) // print indentation
  83. out << "..";
  84. if (this == KD_TRIVIAL) { // canonical trivial leaf node
  85. out << "Leaf (trivial)n";
  86. }
  87. else{
  88. out << "Leaf n=" << n_pts << " <";
  89. for (int j = 0; j < n_pts; j++) {
  90. out << bkt[j];
  91. if (j < n_pts-1) out << ",";
  92. }
  93. out << ">n";
  94. }
  95. }
  96. void ANNkd_tree::Print( // print entire tree
  97. ANNbool with_pts, // print points as well?
  98. ostream &out) // output stream
  99. {
  100. out << "ANN Version " << ANNversion << "n";
  101. if (with_pts) { // print point coordinates
  102. out << "    Points:n";
  103. for (int i = 0; i < n_pts; i++) {
  104. out << "t" << i << ": ";
  105. annPrintPt(pts[i], dim, out);
  106. out << "n";
  107. }
  108. }
  109. if (root == NULL) // empty tree?
  110. out << "    Null tree.n";
  111. else {
  112. root->print(0, out); // invoke printing at root
  113. }
  114. }
  115. //----------------------------------------------------------------------
  116. // kd_tree statistics (for performance evaluation)
  117. // This routine compute various statistics information for
  118. // a kd-tree.  It is used by the implementors for performance
  119. // evaluation of the data structure.
  120. //----------------------------------------------------------------------
  121. #define MAX(a,b) ((a) > (b) ? (a) : (b))
  122. void ANNkdStats::merge(const ANNkdStats &st) // merge stats from child 
  123. {
  124. n_lf += st.n_lf; n_tl += st.n_tl;
  125. n_spl += st.n_spl; n_shr += st.n_shr;
  126. depth = MAX(depth, st.depth);
  127. sum_ar += st.sum_ar;
  128. }
  129. //----------------------------------------------------------------------
  130. // Update statistics for nodes
  131. //----------------------------------------------------------------------
  132. const double ANN_AR_TOOBIG = 1000; // too big an aspect ratio
  133. void ANNkd_leaf::getStats( // get subtree statistics
  134. int dim, // dimension of space
  135. ANNkdStats &st, // stats (modified)
  136. ANNorthRect &bnd_box) // bounding box
  137. {
  138. st.reset();
  139. st.n_lf = 1; // count this leaf
  140. if (this == KD_TRIVIAL) st.n_tl = 1; // count trivial leaf
  141. double ar = annAspectRatio(dim, bnd_box); // aspect ratio of leaf
  142. // incr sum (ignore outliers)
  143. st.sum_ar += float(ar < ANN_AR_TOOBIG ? ar : ANN_AR_TOOBIG);
  144. }
  145. void ANNkd_split::getStats( // get subtree statistics
  146. int dim, // dimension of space
  147. ANNkdStats &st, // stats (modified)
  148. ANNorthRect &bnd_box) // bounding box
  149. {
  150. ANNkdStats ch_stats; // stats for children
  151. // get stats for low child
  152. ANNcoord hv = bnd_box.hi[cut_dim]; // save box bounds
  153. bnd_box.hi[cut_dim] = cut_val; // upper bound for low child
  154. ch_stats.reset(); // reset
  155. child[ANN_LO]->getStats(dim, ch_stats, bnd_box);
  156. st.merge(ch_stats); // merge them
  157. bnd_box.hi[cut_dim] = hv; // restore bound
  158. // get stats for high child
  159. ANNcoord lv = bnd_box.lo[cut_dim]; // save box bounds
  160. bnd_box.lo[cut_dim] = cut_val; // lower bound for high child
  161. ch_stats.reset(); // reset
  162. child[ANN_HI]->getStats(dim, ch_stats, bnd_box);
  163. st.merge(ch_stats); // merge them
  164. bnd_box.lo[cut_dim] = lv; // restore bound
  165. st.depth++; // increment depth
  166. st.n_spl++; // increment number of splits
  167. }
  168. //----------------------------------------------------------------------
  169. // getStats
  170. // Collects a number of statistics related to kd_tree or
  171. // bd_tree.
  172. //----------------------------------------------------------------------
  173. void ANNkd_tree::getStats( // get tree statistics
  174. ANNkdStats &st) // stats (modified)
  175. {
  176. st.reset(dim, n_pts, bkt_size); // reset stats
  177. // create bounding box
  178. ANNorthRect bnd_box(dim, bnd_box_lo, bnd_box_hi);
  179. if (root != NULL) { // if nonempty tree
  180. root->getStats(dim, st, bnd_box); // get statistics
  181. st.avg_ar = st.sum_ar / st.n_lf; // average leaf asp ratio
  182. }
  183. }
  184. //----------------------------------------------------------------------
  185. // kd_tree destructor
  186. // The destructor just frees the various elements that were
  187. // allocated in the construction process.
  188. //----------------------------------------------------------------------
  189. ANNkd_tree::~ANNkd_tree() // tree destructor
  190. {
  191. if (root != NULL) delete root;
  192. if (pidx != NULL) delete [] pidx;
  193. if (bnd_box_lo != NULL) annDeallocPt(bnd_box_lo);
  194. if (bnd_box_hi != NULL) annDeallocPt(bnd_box_hi);
  195. }
  196. //----------------------------------------------------------------------
  197. // This is called with all use of ANN is finished.  It eliminates the
  198. // minor memory leak caused by the allocation of KD_TRIVIAL.
  199. //----------------------------------------------------------------------
  200. void annClose() // close use of ANN
  201. {
  202. if (KD_TRIVIAL != NULL) {
  203. delete KD_TRIVIAL;
  204. KD_TRIVIAL = NULL;
  205. }
  206. }
  207. //----------------------------------------------------------------------
  208. // kd_tree constructors
  209. // There is a skeleton kd-tree constructor which sets up a
  210. // trivial empty tree.  The last optional argument allows
  211. // the routine to be passed a point index array which is
  212. // assumed to be of the proper size (n).  Otherwise, one is
  213. // allocated and initialized to the identity. Warning: In
  214. // either case the destructor will deallocate this array.
  215. //
  216. // As a kludge, we need to allocate KD_TRIVIAL if one has not
  217. // already been allocated.  (This is because I'm too dumb to
  218. // figure out how to cause a pointer to be allocated at load
  219. // time.)
  220. //----------------------------------------------------------------------
  221. void ANNkd_tree::SkeletonTree( // construct skeleton tree
  222. int n, // number of points
  223. int dd, // dimension
  224. int bs, // bucket size
  225. ANNpointArray pa, // point array
  226. ANNidxArray pi) // point indices
  227. {
  228. dim = dd; // initialize basic elements
  229. n_pts = n;
  230. bkt_size = bs;
  231. pts = pa; // initialize points array
  232. root = NULL; // no associated tree yet
  233. if (pi == NULL) { // point indices provided?
  234. pidx = new ANNidx[n]; // no, allocate space for point indices
  235. for (int i = 0; i < n; i++) {
  236. pidx[i] = i; // initially identity
  237. }
  238. }
  239. else {
  240. pidx = pi; // yes, use them
  241. }
  242. bnd_box_lo = bnd_box_hi = NULL; // bounding box is nonexistent
  243. if (KD_TRIVIAL == NULL) // no trivial leaf node yet?
  244. KD_TRIVIAL = new ANNkd_leaf(0, IDX_TRIVIAL); // allocate it
  245. }
  246. ANNkd_tree::ANNkd_tree( // basic constructor
  247. int n, // number of points
  248. int dd, // dimension
  249. int bs) // bucket size
  250. {  SkeletonTree(n, dd, bs);  } // construct skeleton tree
  251. //----------------------------------------------------------------------
  252. // rkd_tree - recursive procedure to build a kd-tree
  253. //
  254. // Builds a kd-tree for points in pa as indexed through the
  255. // array pidx[0..n-1] (typically a subarray of the array used in
  256. // the top-level call).  This routine permutes the array pidx,
  257. // but does not alter pa[].
  258. //
  259. // The construction is based on a standard algorithm for constructing
  260. // the kd-tree (see Friedman, Bentley, and Finkel, ``An algorithm for
  261. // finding best matches in logarithmic expected time,'' ACM Transactions
  262. // on Mathematical Software, 3(3):209-226, 1977).  The procedure
  263. // operates by a simple divide-and-conquer strategy, which determines
  264. // an appropriate orthogonal cutting plane (see below), and splits
  265. // the points.  When the number of points falls below the bucket size,
  266. // we simply store the points in a leaf node's bucket.
  267. //
  268. // One of the arguments is a pointer to a splitting routine,
  269. // whose prototype is:
  270. //
  271. // void split(
  272. // ANNpointArray pa,  // complete point array
  273. // ANNidxArray pidx,  // point array (permuted on return)
  274. // ANNorthRect &bnds, // bounds of current cell
  275. // int n,    // number of points
  276. // int dim,    // dimension of space
  277. // int &cut_dim,    // cutting dimension
  278. // ANNcoord &cut_val, // cutting value
  279. // int &n_lo)    // no. of points on low side of cut
  280. //
  281. // This procedure selects a cutting dimension and cutting value,
  282. // partitions pa about these values, and returns the number of
  283. // points on the low side of the cut.
  284. //----------------------------------------------------------------------
  285. ANNkd_ptr rkd_tree( // recursive construction of kd-tree
  286. ANNpointArray pa, // point array
  287. ANNidxArray pidx, // point indices to store in subtree
  288. int n, // number of points
  289. int dim, // dimension of space
  290. int bsp, // bucket space
  291. ANNorthRect &bnd_box, // bounding box for current node
  292. ANNkd_splitter splitter) // splitting routine
  293. {
  294. if (n <= bsp) { // n small, make a leaf node
  295. if (n == 0) // empty leaf node
  296. return KD_TRIVIAL; // return (canonical) empty leaf
  297. else // construct the node and return
  298. return new ANNkd_leaf(n, pidx); 
  299. }
  300. else { // n large, make a splitting node
  301. int cd; // cutting dimension
  302. ANNcoord cv; // cutting value
  303. int n_lo; // number on low side of cut
  304. ANNkd_node *lo, *hi; // low and high children
  305. // invoke splitting procedure
  306. (*splitter)(pa, pidx, bnd_box, n, dim, cd, cv, n_lo);
  307. ANNcoord lv = bnd_box.lo[cd]; // save bounds for cutting dimension
  308. ANNcoord hv = bnd_box.hi[cd];
  309. bnd_box.hi[cd] = cv; // modify bounds for left subtree
  310. lo = rkd_tree( // build left subtree
  311. pa, pidx, n_lo, // ...from pidx[0..n_lo-1]
  312. dim, bsp, bnd_box, splitter);
  313. bnd_box.hi[cd] = hv; // restore bounds
  314. bnd_box.lo[cd] = cv; // modify bounds for right subtree
  315. hi = rkd_tree( // build right subtree
  316. pa, pidx + n_lo, n-n_lo,// ...from pidx[n_lo..n-1]
  317. dim, bsp, bnd_box, splitter);
  318. bnd_box.lo[cd] = lv; // restore bounds
  319. // create the splitting node
  320. ANNkd_split *ptr = new ANNkd_split(cd, cv, lv, hv, lo, hi);
  321. return ptr; // return pointer to this node
  322. }
  323. //----------------------------------------------------------------------
  324. // kd-tree constructor
  325. // This is the main constructor for kd-trees given a set of points.
  326. // It first builds a skeleton tree, then computes the bounding box
  327. // of the data points, and then invokes rkd_tree() to actually
  328. // build the tree, passing it the appropriate splitting routine.
  329. //----------------------------------------------------------------------
  330. ANNkd_tree::ANNkd_tree( // construct from point array
  331. ANNpointArray pa, // point array (with at least n pts)
  332. int n, // number of points
  333. int dd, // dimension
  334. int bs, // bucket size
  335. ANNsplitRule split) // splitting method
  336. {
  337. SkeletonTree(n, dd, bs); // set up the basic stuff
  338. pts = pa; // where the points are
  339. if (n == 0) return; // no points--no sweat
  340. ANNorthRect bnd_box(dd); // bounding box for points
  341. annEnclRect(pa, pidx, n, dd, bnd_box);// construct bounding rectangle
  342. // copy to tree structure
  343. bnd_box_lo = annCopyPt(dd, bnd_box.lo);
  344. bnd_box_hi = annCopyPt(dd, bnd_box.hi);
  345. switch (split) { // build by rule
  346. case ANN_KD_STD: // standard kd-splitting rule
  347. root = rkd_tree(pa, pidx, n, dd, bs, bnd_box, kd_split);
  348. break;
  349. case ANN_KD_MIDPT: // midpoint split
  350. root = rkd_tree(pa, pidx, n, dd, bs, bnd_box, midpt_split);
  351. break;
  352. case ANN_KD_FAIR: // fair split
  353. root = rkd_tree(pa, pidx, n, dd, bs, bnd_box, fair_split);
  354. break;
  355. case ANN_KD_SUGGEST: // best (in our opinion)
  356. case ANN_KD_SL_MIDPT: // sliding midpoint split
  357. root = rkd_tree(pa, pidx, n, dd, bs, bnd_box, sl_midpt_split);
  358. break;
  359. case ANN_KD_SL_FAIR: // sliding fair split
  360. root = rkd_tree(pa, pidx, n, dd, bs, bnd_box, sl_fair_split);
  361. break;
  362. default:
  363. annError("Illegal splitting method", ANNabort);
  364. }
  365. }