-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtd10-arbres.ml
311 lines (143 loc) · 6.26 KB
/
td10-arbres.ml
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
type ('a, 'b) arbre =
| Interne of 'a * ('a, 'b) arbre * ('a, 'b) arbre
| Feuille of 'b ;;
(* faire des terminalisations aussi*)
let rec hauteur a = match a with
|Feuille f -> 0
|Interne (_,g,d) -> 1+max (hauteur g) (hauteur d) ;;
let rec taille a = match a with
|Feuille f -> 1
|Interne (_,g,d) -> 1+ taille g + taille d ;;
let rec dernier a = match a with
| Feuille f -> f
|Interne (_,g,d) -> dernier d ;;
let rec affiche_prefixe a = match a with
|Feuille f -> print_newline (print_int f)
|Interne (x,g,d) -> print_newline (print_int x) ; affiche_prefixe g ; affiche_prefixe d ;;
let rec affiche_infixe a = match a with
|Feuille f -> print_newline (print_int f)
|Interne (x,g,d) -> affiche_infixe g ; print_newline (print_int x) ; affiche_infixe d ;;
let rec affiche_postfixe a = match a with
|Feuille f -> print_newline (print_int f)
|Interne (x,g,d) -> affiche_postfixe g ; affiche_postfixe d ; print_newline (print_int x) ;;
type ('a, 'b) token = N of 'a | F of 'b ;;
let rec postfixe_naif a = match a with
|Feuille f -> [f]
|Interne (x,g,d) -> postfixe_naif g @ postfixe_naif d @ [x] ;;
let rec post_fixe a =
let rec aux a l = match a with (* distinguer un cas ou on est qu'avec des feuilles en bas *)
| Feuille f -> (F f )::l
|Interne (x,g,d) -> (N x)::(aux d (aux g l))
in List.rev (aux a []) ;;
let rec prefixe a =
let rec aux a l = match a with
| Feuille f -> (F f )::l
|Interne (x,g,d) -> aux d (aux g ((N x)::l))
in List.rev (aux a []) ;;
let rec infixe a =
let rec aux a l = match a with
|Feuille f -> (F f)::l
|Interne (x,g,d) -> aux d (( N x)::(aux g l))
in List.rev (aux a []) ;;
let rec post_fixe_term a =
let rec aux f e = match f with
|[]->e
|a::r -> match a with
|Feuille m -> aux r (F m::e)
|Interne (x,g,d) -> aux (d::g::r) (( N x)::e) (* l'ordre est choisi pour respecter l'ordre postfixe inverse, au final on construit bien la liste à l'envers*)
in (aux [a] []) ;;
(* utiliser une file*)
let rec etiquettes_largeur a =
let rec aux file u =
match Queue.pop file with
|Feuille f when Queue.is_empty file -> (F f)::u
|Feuille f -> aux file ((F f)::u)
|Interne (x,g,d) -> Queue.push g file ; Queue.push d file ; aux file ((N x)::u)
in let m = Queue.create () in Queue.push a m ; List.rev_append (aux m []) [] ;;
let rec lire_etiquette u a =
match u,a with
|[],Feuille f -> f
|[],Interne (x,_,_) -> x
|x::r,Interne (_,g,d) when x -> lire_etiquette r d
|x::r,Interne (_,g,d) -> lire_etiquette r g
|_,Feuille f -> failwith "error" ;;
let rec incremente a u =
match a,u with
|Feuille f,[] -> Feuille (f+1)
|Interne (x,g,d),[]-> Interne (x+1,g,d)
|Interne (m,g,d),x::r when x -> Interne (m,g, incremente d r)
|Interne (m,g,d),x::r -> Interne (m,incremente g r,d)
|Feuille f,_ -> failwith "error" ;;
let affiche_avec_adresse x adresse =
List.iter (fun b -> print_int (if b then 1 else 0)) adresse;
Printf.printf " : %i\n" x ;;
let tableau_adresses a =
let rec aux a cour = match a with
|Feuille f -> affiche_avec_adresse f cour
|Interne (x,g,d) -> affiche_avec_adresse x cour ; aux g (false::cour) ; aux d (true::cour)
in aux a [];;
(*refaire le type pile *)
type 'a pile = 'a list ref ;;
let pile_vide = ref [] ;;
let pop pile = match !pile with
|[] -> failwith "impossible"
|x::r -> pile:= r ; x ;;
let push x pile = pile := (x::(!pile)) ;;
let lire_postfixe u =
let rec aux pile l = match l with
|[] -> pop pile
|x::r -> match x with
|F f -> push (Feuille f) pile ; aux pile r
|N m -> (let a = pop pile in let b = pop pile in push (Interne (m,b,a)) pile ; aux pile r)
in aux pile_vide u ;;
(*utiliser une pile comme liste*) (* fonction à priori inutile, c'était juste pour tester*)
let lire_prefixe_izi u =
let rec reverse a = match a with
| Feuille f -> Feuille f
|Interne (x,g,d) -> Interne (x, reverse d, reverse g)
in reverse (lire_postfixe (List.rev u)) ;;
let lire_largeur u = (* mettre sous le module Queue*)
let rec aux file u = match u with
|[] -> pop file
|x::r -> match x with
|F f -> push (Feuille f ) file ; aux file r
|N x -> let a = pop file in let b = pop file in push (Interne (x,b,a))file ; aux file r
in let m = file_vide in aux m u ;;
type cote = G | D ;;
(* arbre binaire entier non étiqueté *)
type arbre = Feuille | Noeud of arbre * arbre ;;
(* on annote chaque noeud interne avec le cardinal du sous-arbre
correspondant *)
type arbre_annote =
| N of int * arbre_annote * arbre_annote
| F;;
let card = function
| F -> 1
| N(taille, _, _) -> taille ;;
let rec annote a = match a with
|Feuille -> F
|Noeud (g,d) -> let a,b = annote g,annote d in match a,b with
|F,F -> N (2,a,b)
|F,N (x,_,_) |N (x,_,_),F -> N (x+1,a,b)
|N (x,_,_),N (y,_,_) -> N (x+y+1,a,b) ;;
let insere (b,x,t) = (*faire un parcours préfixe après*) (*ne pas oublier d'augmenter le cardinal de chaque père après *)(*x est le noeud à avoir dans l'ordre préfixe*)
let rec aux b x t = match b,t with
|F,D -> (N (3,F,F),3)
|F,G -> (N (3,F,F),2)
|N (taille,g,d),G when x=1 -> (N (taille+1,F,b),taille +1) (* A FINIR*)
|N (taille,g,d),D when x=1 -> (N (taille+1,b,F),taille +2)
|N (taille,g,d),_ ->let t1= card g in let a,f =(if t1<=x then aux d (x-t1) t
else aux g (x-1) t) in if t1<=x then (N (taille + 2,g,a),f)
else (N (taille+2,a,d),f)
in aux b x t ;;
let efface (a,f) =
let rec aux a f = match a with
|F -> (F,1,D)
|N (x,F,F) -> if f=1 then (F,1,G) else if f=2 then (F,1,D) else (F,1,D)
|N (x,F,m) when f=1-> (m,x,G)
|N (x,m,F) when f=1 ->(m,x,D)
|N (taille,g,d) -> let t1=card g in let b,x,e = (if t1<=f then aux d (f-t1+1) else aux g (f-1)) in if t1<= f then (N (taille -1,g,b),x,e ) else (N (taille-1,b,d),x,e)
in aux a f ;;
let test a =
let rec aux n a = if n=1 then true else insere (efface (a,n)) = (a,n) && aux (n-1) a
in aux (card a) a ;;