#huffman #lossless #codes #codec #no-std

nightly huffman-codec

no_std codec for lossless compression via huffman codes

7 releases

0.1.6 Dec 9, 2020
0.1.5 Dec 2, 2020
0.1.3 Nov 27, 2020
0.1.2 Sep 29, 2020

#376 in Compression

Download history 4/week @ 2024-02-26 1/week @ 2024-03-11 114/week @ 2024-04-01

115 downloads per month

Unlicense

18KB
325 lines

Huffman Codes

Lossless data compression via Huffman Codes

Rust

Build

~300 loc with no dependencies, no_std

Benchmarks

The implementation stores Ascii representations in Vec, and non-ascii codes in a BTreeMap. Benchmarks on 2.3 GHz 8-Core Intel Core i9 processor:

% cargo bench
test medium_decode ... bench:   1,000,752 ns/iter (+/- 82,200)
test medium_encode ... bench:     810,993 ns/iter (+/- 50,708)
test small_decode  ... bench:     191,527 ns/iter (+/- 30,319)
test small_encode  ... bench:      46,148 ns/iter (+/- 4,768)

Prolog

All example queries are made from the swish REPL

(main)% swipl huffman.pl
Welcome to SWI-Prolog (threaded, 64 bits, version 8.2.1)
SWI-Prolog comes with ABSOLUTELY NO WARRANTY. This is free software.
Please run ?- license. for legal details.
For online help and background, visit https://www.swi-prolog.org
For built-in help, use ?- help(Topic). or ?- apropos(Word).
?- 

Example queries with output:

?- make_code('How are you doing?',C),ncode('How are',C,R),write(R).
[0,0,0,1,1,1,1,1,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,1,0,0]
C = [[1, ?, [0, 0, 0, 0]], [1, 'H', [0, 0, 0, 1]], [1, a, [0, 0, 1|...]], [1, d, [0, 0|...]], [1, e, [0|...]], [1, g, [...|...]], [1, i|...], [1|...], [...|...]|...],
R = [0, 0, 0, 1, 1, 1, 1, 1, 0|...] .

?- make_code('How are you doing?',C),dcode([0,0,0,1,1,1,1,1,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,1,0,0],C,R).
C = [[1, ?, [0, 0, 0, 0]], [1, 'H', [0, 0, 0, 1]], [1, a, [0, 0, 1|...]], [1, d, [0, 0|...]], [1, e, [0|...]], [1, g, [...|...]], [1, i|...], [1|...], [...|...]|...],
R = "How are" .

?- test.
Character            Frequency          Code
! :                  1                  00010
c :                  1                  00011
g :                  1                  00100
l :                  1                  00101
p :                  1                  00110
r :                  1                  00111
u :                  1                  01000
x :                  1                  01001
d :                  2                  11110
f :                  2                  11111
h :                  2                  0000
i :                  3                  0101
m :                  3                  0110
o :                  3                  0111
s :                  3                  1010
a :                  4                  1011
e :                  4                  1100
n :                  4                  1101
t :                  4                  1110
  :                  7                  100
true .

License

Copyright 2020 4meta5

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

No runtime deps

Features