Skip to content

Commit ba7ca98

Browse files
feat: add LZ77 compression algorithm (#982)
1 parent ea93ffd commit ba7ca98

File tree

3 files changed

+429
-0
lines changed

3 files changed

+429
-0
lines changed

DIRECTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
* Compression
5959
* [Burrows-Wheeler Transform](https://github.com/TheAlgorithms/Rust/blob/master/src/compression/burrows_wheeler_transform.rs)
6060
* [Huffman Encoding](https://github.com/TheAlgorithms/Rust/blob/master/src/compression/huffman_encoding.rs)
61+
* [LZ77](https://github.com/TheAlgorithms/Rust/blob/master/src/compression/lz77.rs)
6162
* [Move to Front](https://github.com/TheAlgorithms/Rust/blob/master/src/compression/move_to_front.rs)
6263
* [Run Length Encoding](https://github.com/TheAlgorithms/Rust/blob/master/src/compression/run_length_encoding.rs)
6364
* Conversions

0 commit comments

Comments
 (0)