|
3 | 3 | ## Src
|
4 | 4 | * Ciphers
|
5 | 5 | * [Caesar](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/caesar.rs)
|
6 |
| - * [Mod](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/mod.rs) |
| 6 | + * [Morse Code](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/morse_code.rs) |
7 | 7 | * [Rot13](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/rot13.rs)
|
8 | 8 | * [Vigenere](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/vigenere.rs)
|
9 |
| - * [Morse Code](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/morse_code.rs) |
10 | 9 | * Data Structures
|
11 | 10 | * [B Tree](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/b_tree.rs)
|
12 | 11 | * [Binary Search Tree](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/binary_search_tree.rs)
|
13 | 12 | * [Heap](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/heap.rs)
|
14 | 13 | * [Linked List](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/linked_list.rs)
|
15 |
| - * [Mod](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/mod.rs) |
16 | 14 | * Dynamic Programming
|
17 | 15 | * [Coin Change](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/coin_change.rs)
|
18 | 16 | * [Edit Distance](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/edit_distance.rs)
|
|
21 | 19 | * [Knapsack](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/knapsack.rs)
|
22 | 20 | * [Longest Common Subsequence](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/longest_common_subsequence.rs)
|
23 | 21 | * [Maximum Subarray](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/maximum_subarray.rs)
|
24 |
| - * [Mod](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/mod.rs) |
25 | 22 | * General
|
26 | 23 | * [Convex Hull](https://github.com/TheAlgorithms/Rust/blob/master/src/general/convex_hull.rs)
|
27 | 24 | * [Hanoi](https://github.com/TheAlgorithms/Rust/blob/master/src/general/hanoi.rs)
|
28 | 25 | * [Kmeans](https://github.com/TheAlgorithms/Rust/blob/master/src/general/kmeans.rs)
|
29 |
| - * [Mod](https://github.com/TheAlgorithms/Rust/blob/master/src/general/mod.rs) |
30 | 26 | * [Lib](https://github.com/TheAlgorithms/Rust/blob/master/src/lib.rs)
|
31 | 27 | * Searching
|
32 | 28 | * [Binary Search](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/binary_search.rs)
|
33 | 29 | * [Linear Search](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/linear_search.rs)
|
34 |
| - * [Mod](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/mod.rs) |
35 | 30 | * Sorting
|
36 | 31 | * [Bubble Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/bubble_sort.rs)
|
37 | 32 | * [Counting Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/counting_sort.rs)
|
38 | 33 | * [Heap Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/heap_sort.rs)
|
39 | 34 | * [Insertion Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/insertion_sort.rs)
|
40 | 35 | * [Merge Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/merge_sort.rs)
|
41 |
| - * [Mod](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/mod.rs) |
42 | 36 | * [Quick Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/quick_sort.rs)
|
43 | 37 | * [Radix Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/radix_sort.rs)
|
44 | 38 | * [Selection Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/selection_sort.rs)
|
45 | 39 | * [Shell Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/shell_sort.rs)
|
46 | 40 | * String
|
47 | 41 | * [Knuth Morris Pratt](https://github.com/TheAlgorithms/Rust/blob/master/src/string/knuth_morris_pratt.rs)
|
48 |
| - * [Mod](https://github.com/TheAlgorithms/Rust/blob/master/src/string/mod.rs) |
| 42 | + * [Manacher](https://github.com/TheAlgorithms/Rust/blob/master/src/string/manacher.rs) |
| 43 | + * [Rabin Karp](https://github.com/TheAlgorithms/Rust/blob/master/src/string/rabin_karp.rs) |
0 commit comments