Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ismaildrs/huffman-compression
An implementation of huffman compression using c++
https://github.com/ismaildrs/huffman-compression
huffman-algorithm huffman-coding huffman-compression-algorithm huffman-tree
Last synced: about 1 month ago
JSON representation
An implementation of huffman compression using c++
- Host: GitHub
- URL: https://github.com/ismaildrs/huffman-compression
- Owner: ismaildrs
- License: mit
- Created: 2024-05-18T18:59:58.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-19T08:41:42.000Z (7 months ago)
- Last Synced: 2024-10-23T07:43:06.032Z (2 months ago)
- Topics: huffman-algorithm, huffman-coding, huffman-compression-algorithm, huffman-tree
- Language: Makefile
- Homepage:
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Huffman Compression
## Getting Started
To build the executable file, navigate to the build directory and run:```sh
cd build
make
```## Compression
To compress a file, use the following command:```sh
./hc -z
```## Decompression
To decompress a file, use the following command:```sh
./hc -uz
```## Help
For a list of available commands, use:```sh
./hc -h
```