Crates.io | memoires |
lib.rs | memoires |
version | 0.1.1 |
source | src |
created_at | 2022-11-02 16:26:33.384615 |
updated_at | 2022-11-02 16:32:01.404673 |
description | Memoization for Rust |
homepage | |
repository | |
max_upload_size | |
id | 703590 |
size | 2,814 |
The hardest way to implement memoization in Rust...
Lets imagine you have a function that implement Fibonacci sequence:
fn fib(n: usize) -> usize {
if n == 0 {
0
} else if n == 1 {
1
} else {
fib(n - 1) + fib(n - 2)
}
}
fn main() {
// long as f*ck
for i in 1..60 {
println!("{}", fib(i))
}
}
It gonna be change to:
use memoires::Memoire;
// The two generics of Memoire<usize, usize> must be change to the types
// your function will return.
//
// If you have a f(String) -> String, you gonna write Memoire<String, String>.
//
// IMPORTANT:
// - the input type must implement the Clone, Eq and Hash traits
// - the output type must implement the Clone trait
//
fn fib<I, O>(n: usize, m: &mut Memoire<usize, usize>) -> usize {
if n == 0 {
0
} else if n == 1 {
1
} else {
m.run(n - 1) + m.run(n - 2) // Replace the function name with m.run
}
}
fn main() {
let mut fib_mem = Memoire::new(fib::<isize, isize>);
for i in 1..60 {
println!("{}", fib_mem.run(i))
}
}