Skip to content

Commit 1a29048

Browse files
authored
Fix Gitter link (TheAlgorithms#458)
1 parent 1bb4005 commit 1a29048

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

DIRECTORY.md

+9
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,17 @@
2121
* [Rot13](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/rot13.rs)
2222
* [Salsa](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/salsa.rs)
2323
* [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)
2425
* [Tea](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/tea.rs)
2526
* [Theoretical Rot13](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/theoretical_rot13.rs)
2627
* [Transposition](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/transposition.rs)
2728
* [Vigenere](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/vigenere.rs)
2829
* [Xor](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/xor.rs)
2930
* Compression
3031
* [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)
3135
* Data Structures
3236
* [Avl Tree](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/avl_tree.rs)
3337
* [B Tree](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/b_tree.rs)
@@ -59,6 +63,7 @@
5963
* [Maximum Subarray](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/maximum_subarray.rs)
6064
* [Rod Cutting](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/rod_cutting.rs)
6165
* [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)
6267
* General
6368
* [Convex Hull](https://github.com/TheAlgorithms/Rust/blob/master/src/general/convex_hull.rs)
6469
* [Fisher Yates Shuffle](https://github.com/TheAlgorithms/Rust/blob/master/src/general/fisher_yates_shuffle.rs)
@@ -71,6 +76,7 @@
7176
* Geometry
7277
* [Closest Points](https://github.com/TheAlgorithms/Rust/blob/master/src/geometry/closest_points.rs)
7378
* Graph
79+
* [Astar](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/astar.rs)
7480
* [Bellman Ford](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/bellman_ford.rs)
7581
* [Bipartite Matching](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/bipartite_matching.rs)
7682
* [Breadth First Search](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/breadth_first_search.rs)
@@ -133,6 +139,9 @@
133139
* [Square Root](https://github.com/TheAlgorithms/Rust/blob/master/src/math/square_root.rs)
134140
* [Trial Division](https://github.com/TheAlgorithms/Rust/blob/master/src/math/trial_division.rs)
135141
* [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)
136145
* Searching
137146
* [Binary Search](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/binary_search.rs)
138147
* [Binary Search Recursive](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/binary_search_recursive.rs)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<a href="https://the-algorithms.com/discord">
1212
<img src="https://img.shields.io/discord/808045925556682782.svg?logo=discord&colorB=00d37d" height="20" alt="Discord community">
1313
</a>
14-
<a href="https://gitter.im/the-algorithms/rust">
15-
<img src="https://img.shields.io/gitter/room/the-algorithms/rust.svg?style=flat-square" height="20" alt="Gitter chat">
14+
<a href="https://matrix.to/#/#TheAlgorithms_community:gitter.im">
15+
<img src="https://img.shields.io/gitter/room/TheAlgorithms/community.svg?style=flat-square" height="20" alt="Gitter chat">
1616
</a>
1717

1818
<!-- Short description: -->
@@ -23,4 +23,4 @@
2323
See our [directory](DIRECTORY.md) for easier navigation and a better overview of the project.
2424

2525
### Contributing
26-
Read through our [Contribution Guidelines](CONTRIBUTING.md) before you contribute.
26+
Read through our [Contribution Guidelines](CONTRIBUTING.md) before you contribute.

0 commit comments

Comments
 (0)