cdd7b26e5e
* Add merge sort algorithm
* add rust files to gitignore
* Revert "add rust files to gitignore"
This reverts commit
|
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
Cargo.toml | ||
README.md |
README.md
This sorts an array using Merge Sort. The sort is generic and will work with with any Vec
whose items have the std::cmp::Ord
and Copy
traits. More information about Merge Sort can be found here
Prerequisites
- Rust (https://rust-lang.org)
Instructions for running the project
-
Open a terminal/powershell window in the folder/directory.
-
Run the following command
cargo run --release