c-basic/huffman/README.md

13 lines
528 B
Markdown
Raw Normal View History

2022-11-24 22:33:52 +01:00
# Huffman
2022-11-26 01:21:28 +01:00
The `./testfiles` folder is ignored through gitignore, as it might contain large files.
2022-11-27 02:05:29 +01:00
Use the following command in the root directory of this repository populate it or create your own testfiles.
2022-11-24 22:33:52 +01:00
2022-11-27 02:05:29 +01:00
`make`
2022-11-26 01:21:28 +01:00
2022-11-27 02:05:29 +01:00
If you want to do testing using larger files aswell, you can generate these using:
2022-11-26 01:21:28 +01:00
2022-11-27 02:05:29 +01:00
`make big`
2022-11-24 22:33:52 +01:00
2022-11-26 01:21:28 +01:00
Files with random bytes won't be able to be compressed by much, that is normal.
Instead, try something like a text file (or any other file with lower entropy), the LICENSE in the root of this repository for example.