Start to work on Huffman encoding exercise
This commit is contained in:
File diff suppressed because it is too large
Load Diff
+1001
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
pub struct HuffmanAlphabet {
|
||||||
|
pub length: u32,
|
||||||
|
pub frequencies: Vec<u32>,
|
||||||
|
}
|
||||||
+1
-1
@@ -129,6 +129,6 @@ fn main() {
|
|||||||
// c2a3();
|
// c2a3();
|
||||||
// c2a4();
|
// c2a4();
|
||||||
// c3a1();
|
// c3a1();
|
||||||
c3a2();
|
// c3a2();
|
||||||
c3a3();
|
c3a3();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user