https://github.com/rethab/compression
https://github.com/rethab/compression
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/rethab/compression
- Owner: rethab
- Created: 2013-05-30T11:12:07.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-06-10T17:53:59.000Z (about 13 years ago)
- Last Synced: 2023-03-27T17:19:37.221Z (over 3 years ago)
- Language: Haskell
- Size: 234 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Compressor
Currently supports LZW and Huffman
## Benchs (all values in bytes)
Original File Size: 10463
# 32 Bit Huffman
- Huffman only: 11433
- LZW (32 Bit), then Huffman: 12181
# 16 Bit Huffman
- Huffman only: 6713
- LZW (32 Bit), then Huffman: 9857
# 8 Bit Huffman
- Huffman only: 6286
- LZW (32 Bit), then Huffman: 8449
- LZW (16 Bit), then Huffman: 6858
# LZW 16 Bit
- LZW (16 Bit): 8102