Expand description
§CRATE_CREATION_TO_EXPORT_AND_BEYOND
The purpose of this crate is to learn about how to build a rust library based on the project structure in the cargo book.
It also used for learning how to write documents using the cargo doc
command and to submit the crate for other projects.
Please don’t use this crate for a serious projects becuase of the inaccurate documentation and unexpected behavior that is not yet discovered.
Modules§
- n_log_n
- Here are the sorting algorithms with the O(n log n) time complexity; usually, these are some of the most practical algorithms, which they offers a reasonable running time with reasonable storage size.
- n_
or_ smaller - The following contains some of the fastest sorting algorithms which the offers O (n) time complexity; however, they are not the most practical solutions because they usually required more memory to run, or they have limited type of data can be sorted.
- n_
square - They are the slower algorithms, but these functions actually offer better perfomance over small set of items because they generally have a much simpler structure to do swap quicker than the more complex functions.