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.
Virtual file system for convenient work with relative paths.
Tested on linux, windows.
Search algorithms:
name | complexity |
---|---|
max | O(n) |
min | O(n) |
binary | O(log2n) |
Sort algorithms:
name | complexity |
---|---|
selection | O(n2) |
quick | O(n log2n) |