|
8 | 8 | * [Polybius](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/polybius.rs)
|
9 | 9 | * [Rot13](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/rot13.rs)
|
10 | 10 | * [Sha256](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/sha256.rs)
|
| 11 | + * [Transposition](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/transposition.rs) |
11 | 12 | * [Vigenere](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/vigenere.rs)
|
12 | 13 | * [Xor](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/xor.rs)
|
13 | 14 | * Data Structures
|
|
18 | 19 | * [Heap](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/heap.rs)
|
19 | 20 | * [Linked List](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/linked_list.rs)
|
20 | 21 | * [Queue](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/queue.rs)
|
| 22 | + * [Stack Using Singly Linked List](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/stack_using_singly_linked_list.rs) |
21 | 23 | * [Trie](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/trie.rs)
|
22 | 24 | * Dynamic Programming
|
23 | 25 | * [Coin Change](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/coin_change.rs)
|
|
60 | 62 | * Searching
|
61 | 63 | * [Binary Search](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/binary_search.rs)
|
62 | 64 | * [Binary Search Recursive](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/binary_search_recursive.rs)
|
| 65 | + * [Kth Smallest](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/kth_smallest.rs) |
63 | 66 | * [Linear Search](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/linear_search.rs)
|
64 | 67 | * Sorting
|
65 | 68 | * [Bubble Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/bubble_sort.rs)
|
| 69 | + * [Bucket Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/bucket_sort.rs) |
66 | 70 | * [Cocktail Shaker Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/cocktail_shaker_sort.rs)
|
67 | 71 | * [Comb Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/comb_sort.rs)
|
68 | 72 | * [Counting Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/counting_sort.rs)
|
|
77 | 81 | * [Shell Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/shell_sort.rs)
|
78 | 82 | * [Stooge Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/stooge_sort.rs)
|
79 | 83 | * String
|
80 |
| - * [Aho-Corasick Algorithm](https://github.com/TheAlgorithms/Rust/blob/master/src/string/aho_corasick.rs) |
| 84 | + * [Aho Corasick](https://github.com/TheAlgorithms/Rust/blob/master/src/string/aho_corasick.rs) |
81 | 85 | * [Burrows Wheeler Transform](https://github.com/TheAlgorithms/Rust/blob/master/src/string/burrows_wheeler_transform.rs)
|
82 | 86 | * [Knuth Morris Pratt](https://github.com/TheAlgorithms/Rust/blob/master/src/string/knuth_morris_pratt.rs)
|
83 | 87 | * [Manacher](https://github.com/TheAlgorithms/Rust/blob/master/src/string/manacher.rs)
|
|
0 commit comments