1 unstable release
Uses old Rust 2015
0.1.0 | Jan 18, 2017 |
---|
#54 in #was
8KB
196 lines
Sandpile
Sandpile implementation in Rust. WIP.
Usage Example
extern crate sandpile;
use sandpile::Sandpile;
fn main() {
let rows = 3;
let cols = 3;
// Create a new sandpile.
let a = Sandpile::new(rows, cols, Some(vec![1,2,3,1,2,3,1,2,3]));
// Create another sandpile.
// Since no initialization data is provided,
// the sandpile will be populated with 0s
let b = Sandpile::new(rows, cols, None);
// We have overloaded the '+' operator for sandpiles.
let c = a + b;
println!("{}", c);
}
/*
Output:
1 | 2 | 3 |
1 | 2 | 3 |
1 | 2 | 3 |
*/
License
MIT
lib.rs
:
Sandpile
is a library to experiment with data structures known as Sandpiles.
This was inspired from the Numberphile video on the same.