Generation des codes Huffman

This commit is contained in:
2025-12-18 12:34:39 +01:00
parent 3e69ce9d43
commit 49ed3623c6
3 changed files with 68 additions and 20 deletions
@@ -1,8 +1,10 @@
package fr.iutfbleau.sae.mhuffman;
import java.util.*;
public class CanonicalCode{
private Map<Character,Integer> codeLenghts;
private Map<Character,Integer> CanonicalCodes;
private Map<Character,Integer> canonicalCodes;
@@ -15,4 +17,6 @@ public class CanonicalCode{
// à changer selon le contexte ! encore une fois !!
return 0;
}
}
}