j'ai un probleme sur ma fonction add node, des fois elle ajoute un noeud avec weight=0. j'ai print pour voir mais je ne comprends pas. De plus si vous avez des conseils pour ameliorer mon code je suis preneuse merci d'avance
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
#include <stdio.h>
#include <stdlib.h>
//finir remove lowest pr decaler et to shift
typedef struct Node{
  int weight;
  char caracter;
  struct Node * child0;
  struct Node * child1;
}Node;
 
void printtabnode(Node **tab){
 
 
   int i=0;
   while(tab[i]!=NULL){
 
     printf("%d %c  %d\n",i,tab[i]->caracter,tab[i]->weight);
     i++;
}}
int sizeoftab(Node **tab){
 
 
   int i=0;
   while(tab[i]!=NULL){
     i++;
}
return i;
 
}
 
int recupWeight(Node * node){
   return node->weight;
}
int recupCaracter(Node * node){
   return node->caracter;
}
Node * recupChild0(Node * node){
   return node->child0;
}
Node * recupChild1(Node * node){
   return node->child1;
}
Node **readHuffman(FILE* file){
  Node ** tabnode=(Node **)malloc(256*sizeof(Node));
  for(int i=0;i<256;i++){
    tabnode[i]=NULL;
  }
  char c=fgetc(file);
  while(c!=EOF){
 
      if(tabnode[c]!=NULL){
          Node * node=tabnode[c];
          node->weight+=1;
 
          }
      else{
          Node * node=(Node *)malloc(1*sizeof(Node));
          node->caracter=c;
          node->weight=1;
          node->child0=node->child1=NULL;
          tabnode[c]=node;
          }
 
      c=fgetc(file);
      }
  //printtabnode(tabnode);
  return tabnode;
}
Node **cleanHuffman(Node **tab){
  int newindex=0;
 
  for(int i=0;i<257;i++){
    if(tab[i]!=NULL){
      tab[newindex]=tab[i];
      newindex+=1;
 
  }}
 
tab=(Node **)realloc(tab,(newindex+1)*sizeof(Node*));
tab[newindex]=NULL;
//printtabnode(tab);
 
return tab;
 
 
}
int giveIndexOfminWeigth(Node **tab){
  int minWeight=recupWeight(tab[0]);
  int indexmin=0;
  int i=0;
  while(tab[i]!=NULL){
    if(recupWeight(tab[i])<minWeight){
      minWeight=recupWeight(tab[i]);
      indexmin=i;
 
    }
    i++;
  }
  return indexmin;
}
void shift(Node **tab){
  int i=0;
  while(tab[i]!=NULL){
 
    i++;
 
}
  int newi=i;
  i+=1;
  while(tab[i]!=NULL){
    tab[newi]=tab[i];
      i++;newi++;
 
}
tab=(Node **)realloc(tab,(newi+1)*sizeof(Node*));
 
tab[newi]=NULL;
 
 
tab[newi]=NULL;
}
Node* removeLowestWeighted(Node **tab){
 
    Node * nodemin=(Node *)malloc(sizeof(Node));
    int indexmin=giveIndexOfminWeigth(tab);
    nodemin=tab[indexmin];
    tab[indexmin]=NULL;
 
    shift(tab);
 
 
 
 
 
return nodemin;
 
 
}
Node * minheap(Node * n0,Node * n1){
 
    Node * newnode=(Node*)malloc(sizeof(Node));
    newnode->child0=n0;
    newnode->child1=n1;
    newnode->weight=recupWeight(n0)+recupWeight(n1);
    return newnode;
 
}
Node** addNodeInTab(Node **tab,Node * newnode){
  int s_tab=sizeoftab(tab);
  //printf("sizeof  %d\n",sizeoftab(tab));
  printf("  newnode1  %d\n",newnode->weight);
  tab=(Node **)realloc(tab,(s_tab+1)*sizeof(Node*));
  s_tab++;
  tab[s_tab]=NULL;
  tab[s_tab-1]=newnode;
  printf("  newnode%d\n",newnode->weight);
  printf("%d  s_tab %d\n",s_tab,tab[s_tab-1]->weight);
  printtabnode(tab);
  return tab;
 
}
Node ** buildHuffmanTree(Node **tab){
    Node** Root=tab;
    int t=sizeoftab(tab);
  while(t>1){
 
  Node *n0=removeLowestWeighted(Root);
    Node *n1=removeLowestWeighted(Root);
 
    Node *transHeap=minheap(n0,n1);
   printf("trabds=%d\n",transHeap->weight);
   Root=addNodeInTab(Root,transHeap);
    t--;
 
 
  }
  //Root=tab;
 
 
 
 
 
//  free(tab);
  return Root;
}
 
 
 
 
 
int main(void){
  FILE *fp;
  fp = fopen("exemple.txt","r");
  Node ** n=readHuffman(fp);
  fclose(fp);
  n=cleanHuffman(n);
  printtabnode(n);
  int min=giveIndexOfminWeigth(n);
 
  printf("le min est :%d\n",min);
  n=buildHuffmanTree(n);
 
 
 
//  printtabnode(n);
  return 1;
}