algorithmplus 0.1.4

Library of commonly used algorithms.
Documentation
1
2
3
4
5
6
7
8
mod binary_search;
mod linear_search;

#[cfg(test)]
mod test;

pub use self::binary_search::binary_search;
pub use self::linear_search::linear_search;