6 releases

0.3.1 Jan 21, 2020
0.3.0 Jan 21, 2020
0.2.7 Jan 21, 2020
0.0.3 Jun 25, 2019

⚠️ Issues reported

#1739 in Data structures

Download history 2/week @ 2024-02-16 9/week @ 2024-02-23 35/week @ 2024-03-01 5/week @ 2024-03-08 338/week @ 2024-03-29 200/week @ 2024-04-05 36/week @ 2024-04-12

574 downloads per month
Used in toolbox

MIT license

25KB
708 lines

Algorithms & data structures

Crates.io

alg

Search algorithms:

namecomplexitydescription
max O(n) maximum in &[T]
min O(n) minimum in &[T]
binary O(log2n) binary search in &[T]
lcs O(mn) longest common subsequence

Sort algorithms:

namecomplexity
selection O(n2)
quick O(n log2n)

ds

namedescription
Matrix two-dimensional array

No runtime deps