toolbox::{vfs, alg}

Crates.io

This project is no longer supported (deprecated).\ It divided into two independent parts: - if you need virtual file system, please use vfsys crate. - if you need algorithms & data structures, please use alg_ds crate.

vfs

Virtual file system for convenient work with relative paths.

Tested on linux, windows.

alg

Search algorithms:

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

Sort algorithms:

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