toolbox

Simple tools for daily use

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
Download history 9/week @ 2024-06-22 132/week @ 2024-06-29 20/week @ 2024-07-06 51/week @ 2024-07-13 43/week @ 2024-07-20 276/week @ 2024-07-27 98/week @ 2024-08-03 18/week @ 2024-08-10 167/week @ 2024-08-17 6/week @ 2024-08-24 13/week @ 2024-08-31 27/week @ 2024-09-07 16/week @ 2024-09-14 87/week @ 2024-09-21 117/week @ 2024-09-28

248 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