manhattan-tree 0.1.0

A spatial tree which can effiently find closest key to a point, by manhattan distance.
1
2
3
4
5
6
7
8

mod queue;
mod map;
mod set;

pub use self::queue::MTreeQueue;
pub use self::map::MTreeMap;
pub use self::set::MTreeSet;