[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/aicers/srtree/ci.yml?style=plastic)](#) [![crates.io](https://img.shields.io/crates/v/srtree)](https://crates.io/crates/srtree) # srtree Rust implementation of [SR-Tree](https://dl.acm.org/doi/10.1145/253262.253347): nearest neighbor search index for high-dimensional clustered datasets, modified to support variance-based bulk-loading. This crate applies fundamental concepts presented in the paper, and the original C++ version can be found [here](http://www.dbl.nii.ac.jp/~katayama/homepage/research/srtree/). ## Examples This example shows how to query nearest neighbors on Euclidean SRTree: ```rust use srtree::SRTree; fn main() { let points = vec![ vec![0., 0.], vec![1., 1.], vec![2., 2.], vec![3., 3.], vec![4., 4.], ]; let tree = SRTree::euclidean(&points).expect("Failed to build SRTree"); let (indices, distances) = tree.query(&[8., 8.], 3); println!("{indices:?}"); // [4, 3, 2] (sorted by distance) println!("{distances:?}"); } ``` Other distance metrics can be defined using `Metric` trait: ```rust use srtree::{SRTree, Metric}; struct Manhattan; impl Metric for Manhattan { fn distance(&self, point1: &[f64], point2: &[f64]) -> f64 { point1.iter().zip(point2).map(|(a, b)| (a - b).abs()).sum() } fn distance_squared(&self, _: &[f64], _: &[f64]) -> f64 { 0. } } fn main() { let points = vec![ vec![0., 0.], vec![1., 1.], vec![2., 2.], vec![3., 3.], vec![4., 4.], ]; let tree = SRTree::default(&points, Manhattan).expect("Failed to build SRTree"); let (indices, distances) = tree.query(&[8., 8.], 3); println!("{indices:?}"); // [4, 3, 2] (sorted by distance) println!("{distances:?}"); // [8., 10., 12.] } ``` ## License Copyright 2019-2023 EINSIS, Inc. Licensed under [Apache License, Version 2.0][apache-license] (the "License"); you may not use this crate except in compliance with the License. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See [LICENSE](LICENSE) for the specific language governing permissions and limitations under the License. ## Contribution Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the [Apache-2.0 license][apache-license], shall be licensed as above, without any additional terms or conditions. [apache-license]: http://www.apache.org/licenses/LICENSE-2.0