Files
SAE32_2025/src/fr/iutfbleau/sae/mhuffman/CanonicalCode.java
T

23 lines
369 B
Java
Raw Normal View History

2025-12-18 12:34:39 +01:00
package fr.iutfbleau.sae.mhuffman;
2025-12-15 20:14:12 +01:00
import java.util.*;
public class CanonicalCode{
2025-12-18 12:56:55 +01:00
private Map<Integer,Integer> codeLenghts;
private Map<Integer,Integer> canonicalCodes = new HashMap<>();
2025-12-15 20:14:12 +01:00
public int getCode(){
// à changer selon le contexte !
return 0;
}
public int getLength(){
// à changer selon le contexte ! encore une fois !!
return 0;
}
2025-12-18 12:34:39 +01:00
}