Yûki - Encoding Search not working

This commit is contained in:
name 2019-12-15 00:03:18 +01:00
parent 7acf2f20fa
commit 3b30f7714c
No known key found for this signature in database
GPG key ID: 03E8F3CF3183323A

View file

@ -119,6 +119,7 @@ arbre huffman(arbre T[]){
Index=i;
while(Index<ASCII_EXT-1){
arbre tmp=malloc(sizeof(noeud*));
tmp->elt=NULL;
tmp->fils_gauche=T[Index];
tmp->fils_droit=T[Index+1];
tmp->poids=T[Index]->poids +T[Index+1]->poids;