c-basic/huffman/README.md

11 lines
460 B
Markdown
Raw Normal View History

2022-11-24 22:33:52 +01:00
# Huffman
the testfiles folder is unpopulated and not staged through gitignore, as it might contain large files.
2022-11-24 23:00:34 +01:00
Use the following command to populate it or create your own testfiles.
2022-11-24 22:33:52 +01:00
2022-11-24 22:34:49 +01:00
``dd if=/dev/urandom of=10K-random.img count=1K``
2022-11-24 22:35:05 +01:00
``dd if=/dev/urandom of=10K-random.img count=1M``
2022-11-24 22:33:52 +01:00
...
files with random bytes wont be able to be compressed byy much, that is normal.
Instead try something like a text file. The LICENSE in the root of this repo for example.