kdtree/src/lib.rs

113 lines
2.9 KiB
Rust
Raw Normal View History

2018-03-05 10:37:48 +01:00
use std::fmt;
2018-03-05 14:10:50 +01:00
use std::cmp::Ordering;
2018-03-05 10:37:48 +01:00
2018-03-05 11:17:50 +01:00
/// A k-dimension kd tree
2018-03-05 11:44:43 +01:00
pub enum KdTree<T> {
2018-03-05 14:10:50 +01:00
Node {
location: T,
left: Box<KdTree<T>>,
right: Box<KdTree<T>>,
},
2018-03-05 11:44:43 +01:00
Leaf(Vec<T>),
2018-03-05 11:17:50 +01:00
}
2018-03-05 10:37:48 +01:00
2018-03-05 14:10:50 +01:00
impl<T: Clone> KdTree<T> where {
pub fn new<F: Fn(usize, &T, &T) -> Ordering>(
points: &mut [T],
dimension: usize,
comparator: F,
leaf_size: usize,
) -> KdTree<T> {
KdTree::new_with_depth(points, dimension, &comparator, leaf_size, 0)
2018-03-05 11:17:50 +01:00
}
2018-03-05 10:37:48 +01:00
2018-03-05 14:10:50 +01:00
fn new_with_depth<F: Fn(usize, &T, &T) -> Ordering>(
points: &mut [T],
dimension: usize,
comparator: &F,
leaf_size: usize,
depth: usize,
) -> KdTree<T> {
2018-03-05 11:17:50 +01:00
// Select axis to work on
let axis = depth % dimension;
2018-03-05 10:37:48 +01:00
2018-03-05 11:17:50 +01:00
// Sort the points by axis
2018-03-05 14:10:50 +01:00
points.sort_by(|a, b| comparator(axis, a, b));
2018-03-05 10:37:48 +01:00
2018-03-05 11:17:50 +01:00
// Find the median
let len = points.len();
2018-03-05 11:44:43 +01:00
// If there are not enough elements for a leaf, make a leaf
if len <= leaf_size {
2018-03-05 14:10:50 +01:00
let mut contained = vec![];
for p in points {
contained.push(p.clone());
}
2018-03-05 11:44:43 +01:00
return KdTree::Leaf(contained);
}
// Else split what's remaining
2018-03-05 11:17:50 +01:00
let delimiter = points.len() / 2;
2018-03-05 14:10:50 +01:00
let median = points[delimiter].clone();
2018-03-05 10:37:48 +01:00
2018-03-05 11:44:43 +01:00
// Build the left and right branches
2018-03-05 14:10:50 +01:00
let mut left = vec![];
for i in &points[0..delimiter] {
left.push(i.clone());
}
2018-03-05 10:37:48 +01:00
2018-03-05 14:10:50 +01:00
let right = &mut points[delimiter + 1..len];
2018-03-05 10:37:48 +01:00
2018-03-05 11:44:43 +01:00
// Recursive call
KdTree::Node {
location: median,
2018-03-05 14:10:50 +01:00
left: Box::new(KdTree::new_with_depth(
&mut left,
dimension,
comparator,
leaf_size,
depth + 1,
)),
right: Box::new(KdTree::new_with_depth(
right,
dimension,
comparator,
leaf_size,
depth + 1,
)),
2018-03-05 10:37:48 +01:00
}
2018-03-05 11:17:50 +01:00
}
}
2018-03-05 10:37:48 +01:00
2018-03-05 14:10:50 +01:00
impl<T: fmt::Display> KdTree<T> {
2018-03-05 11:17:50 +01:00
fn print(&self, formatter: &mut fmt::Formatter, indent: &str) -> fmt::Result {
2018-03-05 11:44:43 +01:00
match self {
2018-03-05 14:10:50 +01:00
&KdTree::Node {
ref location,
ref left,
ref right,
} => {
2018-03-05 11:44:43 +01:00
writeln!(formatter, "{}{}", indent, location)?;
left.print(formatter, &format!("{} ", indent))?;
right.print(formatter, &format!("{} ", indent))?;
2018-03-05 14:10:50 +01:00
}
2018-03-05 11:44:43 +01:00
&KdTree::Leaf(ref elements) => {
write!(formatter, "{}[", indent)?;
for element in elements {
write!(formatter, "{}, ", element)?;
}
writeln!(formatter, "]")?;
2018-03-05 14:10:50 +01:00
}
2018-03-05 10:37:48 +01:00
}
2018-03-05 11:17:50 +01:00
Ok(())
2018-03-05 10:37:48 +01:00
}
}
2018-03-05 14:10:50 +01:00
impl<T: fmt::Display> fmt::Display for KdTree<T> {
2018-03-05 11:17:50 +01:00
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
self.print(formatter, "")
}
}