mirror of
https://github.com/krahets/hello-algo.git
synced 2026-09-01 20:57:13 +00:00
The Rust version of the selection sort. (#524)
* The Rust version of the selection sort. * The Rust version of the binary_search_edge * update,The Rust version of the binary_search_edge and selection_sort * update,The Rust version of the binary_search_edge and selection_sort * update The Rust version of the binary_search_edge and selection_sort
This commit is contained in:
@@ -94,6 +94,11 @@ path = "chapter_hashing/array_hash_map.rs"
|
||||
name = "binary_search"
|
||||
path = "chapter_searching/binary_search.rs"
|
||||
|
||||
# Run Command: cargo run --bin binary_search_edge
|
||||
[[bin]]
|
||||
name = "binary_search_edge"
|
||||
path = "chapter_searching/binary_search_edge.rs"
|
||||
|
||||
# Run Command: cargo run --bin bubble_sort
|
||||
[[bin]]
|
||||
name = "bubble_sort"
|
||||
@@ -114,6 +119,11 @@ path = "chapter_sorting/quick_sort.rs"
|
||||
name = "merge_sort"
|
||||
path = "chapter_sorting/merge_sort.rs"
|
||||
|
||||
# Run Command: cargo run --bin selection_sort
|
||||
[[bin]]
|
||||
name = "selection_sort"
|
||||
path = "chapter_sorting/selection_sort.rs"
|
||||
|
||||
# Run Command: cargo run --bin array_stack
|
||||
[[bin]]
|
||||
name = "array_stack"
|
||||
|
||||
Reference in New Issue
Block a user