Methode getDictionnary

This commit is contained in:
2025-12-18 12:56:55 +01:00
parent bfaf245477
commit 396b4bbf57
2 changed files with 6 additions and 2 deletions
@@ -3,8 +3,8 @@ package fr.iutfbleau.sae.mhuffman;
import java.util.*;
public class CanonicalCode{
private Map<Character,Integer> codeLenghts;
private Map<Character,Integer> canonicalCodes;
private Map<Integer,Integer> codeLenghts;
private Map<Integer,Integer> canonicalCodes = new HashMap<>();