https://github.com/archismankarmakar/huffman-encoding-compression-algorithm-in-rust
https://github.com/archismankarmakar/huffman-encoding-compression-algorithm-in-rust
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/archismankarmakar/huffman-encoding-compression-algorithm-in-rust
- Owner: ArchismanKarmakar
- License: mit
- Created: 2024-03-21T04:59:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-21T09:04:02.000Z (over 1 year ago)
- Last Synced: 2025-03-11T07:52:20.787Z (7 months ago)
- Language: Rust
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Huffman Encoding in RUST
#### A CLI tool written in rust to compress files using [Huffman Compression](https://en.wikipedia.org/wiki/Huffman_coding#Compression)
#### Author: Archisman Karmakar```console
usage:
rust_huffman_compression --interactive
rust_huffman_compression -i [optional args]
required
--interactive use cli input
-i, --input use file input
optional args:
-o, --output output filename
-b, --binary read input file as binary file
this option should be used when compressing large files
or when compressing other filetypes than text files
-v, --verbose increase verbosity
-h, --help print help message and exit
```