17 releases

0.2.8 Jun 23, 2020
0.2.7 Jan 21, 2020
0.1.7 Jan 5, 2020
0.1.6 Jun 24, 2019
0.0.6 Jun 3, 2019

#2653 in Algorithms

Download history 62/week @ 2024-12-09 45/week @ 2024-12-16 24/week @ 2024-12-23 4/week @ 2024-12-30 10/week @ 2025-01-06 48/week @ 2025-01-13 25/week @ 2025-01-20 14/week @ 2025-01-27 14/week @ 2025-02-03 28/week @ 2025-02-10 61/week @ 2025-02-17 6/week @ 2025-02-24 72/week @ 2025-03-03 147/week @ 2025-03-10 7/week @ 2025-03-17

227 downloads per month

MIT license

9KB
149 lines

toolbox::{alg, ds, vfs}

Crates.io

Tested on linux, windows.

Further support for this library is not planned. At the moment, it is a "wrapper" of its two dependencies:

alg

Search algorithms:

namecomplexity
max O(n)
min O(n)
binary O(log2n)

Sort algorithms:

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

ds

Matrix data structure (two-dimensional array)

vfs

Virtual file system for convenient work with relative paths.

Dependencies

~39KB