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