algods 0.1.0

A collection of data structures and algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod calculator;
mod collinearity;
mod input_output;
mod percolation;
mod point;
mod rand_vec_gen;
mod threesum;

pub use calculator::Calculator;
pub use collinearity::{BruteCollinearPoints, FastCollinearPoints};
pub use input_output::{read_lines, Reader, Reader2};
pub use percolation::PercolationStats;
pub use point::{LineSegment, Point, Segment};
pub use rand_vec_gen::{gen_vec_rand_int, RandKind};
pub use threesum::ThreeSum;