| # | File | Description |
|---|---|---|
| 1 | kdtree.rs | Shows the usage of a 2D and 3D KdTree for inserting points and performing a kNN search |
| 2 | octree.rs | Shows the usage of an Octree for inserting 3D points in a defined boundary and performing a kNN search |
| 3 | quadtree.rs | Shows the usage of a Quadtree for inserting 2D points in a defined boundary and performing a kNN search |
| 4 | rtree.rs | Shows the usage of a 2D and 3D R-tree for inserting points and performing a kNN search |
| 5 | rstar_tree.rs | Shows the usage of an R*-tree for inserting 2D and 3D points and performing a kNN search |