Crate contest_algorithms

Source
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.