Expand description
Algorithms Cookbook in Rust.
Modules§
- caching
- Basic Cacher struct which stores a closure and a hashmap. The hasmap stores key value pairs representing previous function calls.
- graph
- Basic graph module without explicit support for deletion.
- math
- Number-theoretic utilities for contest problems.
- order
- Ordering algorithms.
- range_
query - scanner
- Generic utility for reading data from standard input, based on voxl’s stdin wrapper.
- string_
proc - String processing algorithms.