2个版本
0.1.1 | 2024年4月20日 |
---|---|
0.1.0 | 2024年4月19日 |
#644 in 算法
每月 35 次下载
110KB
111 行
排序库
这是一个包含各种排序算法实现的Rust库。您可以使用此库对任何可比较类型的切片进行排序。
用法
1. 下载并本地使用
要本地使用此库,请按照以下步骤操作
-
克隆仓库
git clone https://github.com/rulik04/sort_library.git <destination_folder_path>
将 <destination_folder_path> 替换为您希望克隆仓库的文件夹路径。sort_library和您想要使用此库的项目必须在同一文件夹中。
-
通过导入所需的模块在您的Rust项目中使用排序算法
use sort_library::{insertion_sort, merge_sort, quick_sort, selection_sort};
2. 通过GitHub在dependencies
中使用
将以下行添加到您的Cargo.toml
文件中的[dependencies]
```toml
sort_library = { git = "https://github.com/rulik04/sort_library.git" }
```
然后您可以根据上一节所述导入和使用排序算法。
3. 通过crates.io添加
使用cargo add
命令将库添加到您的Cargo.toml
文件中
cargo add sort_library
然后您可以根据上一节所述导入和使用排序算法。