|
21 | 21 | * [Rot13](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/rot13.rs)
|
22 | 22 | * [Salsa](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/salsa.rs)
|
23 | 23 | * [Sha256](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/sha256.rs)
|
| 24 | + * [Sha3](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/sha3.rs) |
24 | 25 | * [Tea](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/tea.rs)
|
25 | 26 | * [Theoretical Rot13](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/theoretical_rot13.rs)
|
26 | 27 | * [Transposition](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/transposition.rs)
|
27 | 28 | * [Vigenere](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/vigenere.rs)
|
28 | 29 | * [Xor](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/xor.rs)
|
29 | 30 | * Compression
|
30 | 31 | * [Run Length Encoding](https://github.com/TheAlgorithms/Rust/blob/master/src/compression/run_length_encoding.rs)
|
| 32 | + * Conversions |
| 33 | + * [Binary To Decimal](https://github.com/TheAlgorithms/Rust/blob/master/src/conversions/binary_to_decimal.rs) |
| 34 | + * [Decimal To Binary](https://github.com/TheAlgorithms/Rust/blob/master/src/conversions/decimal_to_binary.rs) |
31 | 35 | * Data Structures
|
32 | 36 | * [Avl Tree](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/avl_tree.rs)
|
33 | 37 | * [B Tree](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/b_tree.rs)
|
|
59 | 63 | * [Maximum Subarray](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/maximum_subarray.rs)
|
60 | 64 | * [Rod Cutting](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/rod_cutting.rs)
|
61 | 65 | * [Snail](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/snail.rs)
|
| 66 | + * [Subset Generation](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/subset_generation.rs) |
62 | 67 | * General
|
63 | 68 | * [Convex Hull](https://github.com/TheAlgorithms/Rust/blob/master/src/general/convex_hull.rs)
|
64 | 69 | * [Fisher Yates Shuffle](https://github.com/TheAlgorithms/Rust/blob/master/src/general/fisher_yates_shuffle.rs)
|
|
71 | 76 | * Geometry
|
72 | 77 | * [Closest Points](https://github.com/TheAlgorithms/Rust/blob/master/src/geometry/closest_points.rs)
|
73 | 78 | * Graph
|
| 79 | + * [Astar](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/astar.rs) |
74 | 80 | * [Bellman Ford](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/bellman_ford.rs)
|
75 | 81 | * [Bipartite Matching](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/bipartite_matching.rs)
|
76 | 82 | * [Breadth First Search](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/breadth_first_search.rs)
|
|
133 | 139 | * [Square Root](https://github.com/TheAlgorithms/Rust/blob/master/src/math/square_root.rs)
|
134 | 140 | * [Trial Division](https://github.com/TheAlgorithms/Rust/blob/master/src/math/trial_division.rs)
|
135 | 141 | * [Zellers Congruence Algorithm](https://github.com/TheAlgorithms/Rust/blob/master/src/math/zellers_congruence_algorithm.rs)
|
| 142 | + * Navigation |
| 143 | + * [Bearing](https://github.com/TheAlgorithms/Rust/blob/master/src/navigation/bearing.rs) |
| 144 | + * [Haversine](https://github.com/TheAlgorithms/Rust/blob/master/src/navigation/haversine.rs) |
136 | 145 | * Searching
|
137 | 146 | * [Binary Search](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/binary_search.rs)
|
138 | 147 | * [Binary Search Recursive](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/binary_search_recursive.rs)
|
|
0 commit comments