-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadaptive_huffman_coding_with_escape_symbols_2.sf
147 lines (115 loc) · 3.1 KB
/
adaptive_huffman_coding_with_escape_symbols_2.sf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#!/usr/bin/ruby
# Implementation of the Adaptive Huffman Coding with escape symbols.
# See also:
# https://rosettacode.org/wiki/huffman_coding
# Reference:
# Data Compression (Summer 2023) - Lecture 16 - Adaptive Methods
# https://youtube.com/watch?v=YKv-w8bXi9c
define(
ESCAPE_SYMBOL => 256, # escape symbol
)
func walk(Hash n, String s, Hash h) {
if (n.has(:a)) {
h{n{:a}} = s
return nil
}
walk(n{:0}, s+'0', h) if n.has(:0)
walk(n{:1}, s+'1', h) if n.has(:1)
}
func mktree_from_freq(Hash freqs) {
var nodes = freqs.sort.map_2d { |b,f|
Hash(a => b, freq => f)
}
loop {
nodes.sort_by!{|h| h{:freq} }
var(x, y) = (nodes.shift, nodes.shift)
if (defined(x)) {
if (defined(y)) {
nodes << Hash(:0 => x, :1 => y, :freq => x{:freq}+y{:freq})
}
else {
nodes << Hash(:0 => x, :freq => x{:freq})
}
}
nodes.len > 1 || break
}
var n = nodes.first
walk(n, '', n{:tree} = Hash())
return n
}
func encode(Array bytes, Array alphabet) {
var contexts = [
Hash(
freq => alphabet.freq,
),
Hash(
freq => [ESCAPE_SYMBOL].freq,
)
]
for c in contexts {
c{:tree} = mktree_from_freq(c{:freq}){:tree}
}
var enc = []
bytes.each {|b|
for i in (1..contexts.end) {
contexts[i]{:tree} = mktree_from_freq(contexts[i]{:freq}){:tree}
}
for c in (contexts.flip) {
if (c{:freq}.has(b)) {
enc << c{:tree}{b}
c{:freq}{b} += 1
break
}
enc << c{:tree}{ESCAPE_SYMBOL}
c{:freq}{b} = 1
}
}
return enc.join
}
func decode(String enc, Array alphabet) {
var out = []
var prefix = ''
var contexts = [
Hash(
freq => alphabet.freq,
),
Hash(
freq => [ESCAPE_SYMBOL].freq,
)
]
for c in contexts {
c{:tree} = mktree_from_freq(c{:freq}){:tree}.flip
}
var escape = false
var k = contexts.end
enc.each {|bit|
prefix += bit
loop {
if (contexts[k]{:tree}.has(prefix)) {
var b = Num(contexts[k]{:tree}{prefix})
if (b == ESCAPE_SYMBOL) {
k -= 1
escape = true
}
else {
out << b
for i in (max(k, 1) .. contexts.end) {
contexts[i]{:freq}{b} := 0 ++
contexts[i]{:tree} = mktree_from_freq(contexts[i]{:freq}){:tree}.flip
}
k = contexts.end
escape = false
}
prefix = ''
}
escape || break
k == 0 && break
}
}
return out
}
var text = "this is an example for huffman encoding"
var bytes = text.bytes
say var enc = encode(bytes, bytes.uniq)
say var dec = decode(enc, bytes.uniq).pack('C*')
assert_eq(dec, text)