A C implementation of the Huffman Algorithm. More info
These instructions will help you run the project and test the functionality of it.
- GCC
- Open the project folder in the terminal.
- Compile the project using GCC.
gcc CHuff.c -o CHuff
- Run the project and Encode the Seed.txt file.
./CHuff
1
Seed.txt
// Check the Encode.txt and Dictionary.txt files generated!
- Run the project again and Decode the Encode.txt file using the Dictionary.txt file generated.
./CHuff
2
Dictionary.txt
Encode.txt
// Check the Decode.txt file generated and it will be the same as the Seed.txt used!
You can edit the Seed.txt content to test the Algorithm with different texts than the provided by default.
- C - The programming language used.
- GCC - The GNU Compiler Collection.
- Antonio Garcia - Algorithm, Files - lantoniogc
- Julio Flores - Interface, Files
This project is licensed under the MIT License - see the LICENSE.md file for details.