This repository has been archived by the owner on Feb 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex3.c
618 lines (558 loc) · 16.7 KB
/
ex3.c
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
/*************************************************/
/* */
/* sucre syntaxique */
/* */
/*************************************************/
#define ISNOT !=
#define NOT !
#define AND &&
#define OR ||
#define then
typedef enum { false, true } bool;
/*************************************************/
/* */
/* definition type image */
/* */
/*************************************************/
typedef struct bloc_image
{ bool toutnoir;
struct bloc_image * fils[4];
} bloc_image;
typedef bloc_image *image;
/*************************************************/
/* */
/* Fonction/Procédure exo3 */
/* */
/*************************************************/
/*------------------ Constructions d'images -------------------------------*/
/********************/
/* construit_blanc */
/********************/
image construit_blanc(){
return NULL;
}
/********************/
/* construit_noir */
/********************/
image construit_noir(){
image img = (image) malloc(sizeof(bloc_image));
img->toutnoir = true;
/*for(int i=0; i<4; i++){
img->fils[i] = NULL;
}*/
return img;
}
/***********************/
/* construit_composee */
/***********************/
image construit_composee(image i1, image i2, image i3, image i4){
image img = (image) malloc(sizeof(bloc_image));
img->toutnoir = false;
img->fils[0] = i1;
img->fils[1] = i2;
img->fils[2] = i3;
img->fils[3] = i4;
return img;
}
/*------------------ Affichages d'images -------------------------------*/
/*********************/
/* affichage normal */
/*********************/
void affiche_simple_aux(image img){
if (img == NULL) printf("B");
else if (img->toutnoir) printf("N");
else{
printf(".");
for(int i=0; i<4; i++){
affiche_simple_aux(img->fils[i]);
printf(" ");
}
}
}
void affiche_simple(image img){
affiche_simple_aux(img);
printf("\n");
}
/*************************/
/* affichage profondeur */
/*************************/
void affiche_profondeur_aux(image img, int p){
if (img == NULL) printf("B%d", p);
else{
if (img->toutnoir) printf("N%d", p);
else{
printf(". %d", p);
for(int i=0; i<4; i++){
affiche_profondeur_aux(img->fils[i], p+1);
printf(" ");
}
}
}
}
void affiche_profondeur(image img){
affiche_profondeur_aux(img, 0);
printf("\n");
}
/*--------------------------------------------------------------*/
/*************************/
/* est_blanche */
/*************************/
bool est_blanche(image img){
if (img == NULL) return true;
else{
if (img->toutnoir) return false;
else{
return (est_blanche(img->fils[0])
&& est_blanche(img->fils[1])
&& est_blanche(img->fils[2])
&& est_blanche(img->fils[3]));
}
}
}
/*************************/
/* est_noire */
/*************************/
bool est_noire(image img){
if (img == NULL) return false;
else{
if (img->toutnoir) return true;
else{
return (est_noire(img->fils[0])
&& est_noire(img->fils[1])
&& est_noire(img->fils[2])
&& est_noire(img->fils[3]));
}
}
}
/*************************/
/* copie */
/*************************/
image Copie(image img){
if (img == NULL) return construit_blanc();
else if (img->toutnoir) return construit_noir();
else return construit_composee( img->fils[0],
img->fils[1],
img->fils[2],
img->fils[3]);
}
/*************************/
/* aire */
/*************************/
float aire(image img, float i){
if (img == NULL) return 0;
else if (img->toutnoir){
return ((1/i) * (1/i));
} else return aire(img->fils[0], i*2) +
aire(img->fils[1], i*2) +
aire(img->fils[2], i*2) +
aire(img->fils[3], i*2);
}
/*************************/
/* meme_dessin */
/*************************/
bool meme_dessin(image i1, image i2){
if((i1 == NULL)) {
return est_blanche(i2);
} else if(i2 == NULL){
return est_blanche(i1);
} else if (i1->toutnoir){
return est_noire(i2);
} else if(i2->toutnoir){
return est_noire(i1);
}
else {
return (meme_dessin(i1->fils[0],i2->fils[0]) &&
meme_dessin(i1->fils[1],i2->fils[1]) &&
meme_dessin(i1->fils[2],i2->fils[2]) &&
meme_dessin(i1->fils[3],i2->fils[3]));
}
}
/*************************/
/* Difference */
/*************************/
image CopieNeg(image img){
if (img == NULL) return construit_noir();
else if (img->toutnoir) return construit_blanc();
else return construit_composee(
CopieNeg(img->fils[0]),
CopieNeg(img->fils[1]),
CopieNeg(img->fils[2]),
CopieNeg(img->fils[3]));
}
image Difference(image i1, image i2){
image res;
if(i1 == NULL){
res = Copie(i2);
} else if (i2 == NULL) {
res = Copie(i1);
} else if (i1->toutnoir){
res = CopieNeg(i2);
} else if (i2->toutnoir){
res = CopieNeg(i1);
} else
res = construit_composee( Difference(i1->fils[0],i2->fils[0]),
Difference(i1->fils[1],i2->fils[1]),
Difference(i1->fils[2],i2->fils[2]),
Difference(i1->fils[3],i2->fils[3]));
return res;
}
/*************************/
/* rendmemoire */
/*************************/
void rendmemoire(image *img){
if (! (*img == NULL) ){
for (int i = 0; i < 4; ++i){
rendmemoire( &((*img)->fils)[i] );
}
free(*img);
*img = NULL;
}
}
/*************************/
/* lecture */
/*************************/
image lecture_aux(){
char c;
scanf(" %c", &c);
if (c == 'B') return construit_blanc();
else if (c == 'N') return construit_noir();
else if(c == '.'){
image i1 = lecture_aux();
image i2 = lecture_aux();
image i3 = lecture_aux();
image i4 = lecture_aux();
return construit_composee(i1, i2, i3, i4);
}
else printf("Entrée invalide, fin de la lecture clavier\n");
exit(1);
}
image lecture(){
printf("Lecture Clavier : entrez une image valide à l'aide des caractères '.', 'N' ou 'B' \n");
return lecture_aux();
}
/*************************/
/* Compte Sous Images */
/* Pleines */
/*************************/
/*...BBNB.NNBN.BBBN.NNNBN.NBN.BBNB.BNB..BBNB.NBBN.BNBN.NBNB*/
/*..BBB.BBBN.BBB.BBBN.BBB.BBBN.BBB.BBBN*/
bool testImagePleine(image i, int h){
if ((i == NULL) || (i->toutnoir)) return (h==0);
else return ((h < 0) || (testImagePleine(i->fils[0], h - 1) &&
testImagePleine(i->fils[1], h - 1) &&
testImagePleine(i->fils[2], h - 1) &&
testImagePleine(i->fils[3], h - 1)));
}
int CSIP(image i, int h){
int res = 0;
if ((i == NULL)||(i->toutnoir)){}
else {
res = CSIP(i->fils[0], h) +
CSIP(i->fils[1], h) +
CSIP(i->fils[2], h) +
CSIP(i->fils[3], h);
}
if (testImagePleine(i, h)) res += 1;
return res;
}
/*************************/
/* négatif */
/*************************/
void Negatif(image *img){
if(*img == NULL){
free(*img);
*img = construit_noir();
} else if( (*img)->toutnoir ) {
free(*img);
*img = construit_blanc();
}
else{
for (int i = 0; i < 4; ++i)
Negatif(&((*img)->fils[i]));
}
}
/*************************************************/
/* Créations d'images */
/* pour tester les fonctions et */
/* procédures (~ 150 lignes) */
/*************************************************/
image nv_carre(){
return construit_composee(
construit_composee(
construit_blanc(),
construit_blanc(),
construit_blanc(),
construit_noir()
),
construit_composee(
construit_blanc(),
construit_blanc(),
construit_noir(),
construit_blanc()
),
construit_composee(
construit_blanc(),
construit_noir(),
construit_blanc(),
construit_blanc()
),
construit_composee(
construit_noir(),
construit_blanc(),
construit_blanc(),
construit_blanc())
);
}
image nv_carre2(){
image img;
img = construit_composee(
construit_composee(
construit_blanc(),
construit_blanc(),
construit_blanc(),
construit_noir()
),
construit_composee(
construit_blanc(),
construit_blanc(),
construit_noir(),
construit_blanc()
),
construit_composee(
construit_blanc(),
construit_noir(),
construit_blanc(),
construit_blanc()
),
construit_composee(
construit_noir(),
construit_blanc(),
construit_blanc(),
construit_blanc()
)
);
Negatif(&img);
return img;
}
image nv_damier(){
return construit_composee(
construit_noir(),
construit_blanc(),
construit_noir(),
construit_blanc()
);
}
image nv_pif(){
return construit_composee(
construit_noir(),
construit_composee(
construit_blanc(),
construit_blanc(),
construit_noir(),
construit_blanc()
),
construit_blanc(),
construit_composee(
construit_noir(),
construit_composee(
construit_noir(),
construit_noir(),
construit_blanc(),
construit_composee(
construit_noir(),
construit_blanc(),
construit_noir(),
construit_noir())
),
construit_blanc(),
construit_noir()
)
);
}
image nv_pif_blanche(){
return construit_composee(
construit_blanc(),
construit_composee(
construit_blanc(),
construit_blanc(),
construit_blanc(),
construit_blanc()
),
construit_blanc(),
construit_composee(
construit_blanc(),
construit_composee(
construit_blanc(),
construit_blanc(),
construit_blanc(),
construit_composee(
construit_blanc(),
construit_blanc(),
construit_blanc(),
construit_blanc())
),
construit_blanc(),
construit_blanc()
)
);
}
image nv_pif_noire(){
return construit_composee(
construit_noir(),
construit_composee(
construit_noir(),
construit_noir(),
construit_noir(),
construit_noir()
),
construit_noir(),
construit_composee(
construit_noir(),
construit_composee(
construit_noir(),
construit_noir(),
construit_noir(),
construit_composee(
construit_noir(),
construit_noir(),
construit_noir(),
construit_noir())
),
construit_noir(),
construit_noir()
)
);
}
/*************************************************/
/* */
/* Main */
/* */
/*************************************************/
int main(int argc, char const *argv[]) {
image damier = nv_damier();
image carre = nv_carre();
image carre2 = nv_carre2();
image pif = nv_pif();
image pif_blanche = nv_pif_blanche();
image pif_noire = nv_pif_noire();
image simple_noire = construit_noir();
image simple_blanche = construit_blanc();
printf("Damier : ");
affiche_simple(damier);
printf("Carré noir : ");
affiche_simple(carre);
printf("Profondeur : \n");
affiche_profondeur(pif);
printf("\nTest est_blanche et est_noire : \n");
affiche_simple(pif_blanche);
printf("est_blanche ? ");
if (est_blanche(pif_blanche)) printf("Vrai\n");
else printf("Faux\n");
affiche_simple(pif_noire);
printf("est_noire ? ");
if (est_noire(construit_noir())) printf("Vrai\n");
else printf("Faux\n");
if (est_noire(pif_noire)) printf("Vrai\n");
else printf("Faux\n");
printf("\nTest Copie : \n");
printf("Pif\n");
affiche_simple(pif);
printf("En voici sa copie : \n");
affiche_simple(Copie(pif));
printf("Simple Noire\n");
affiche_simple(simple_noire);
printf("En voici sa copie : \n");
affiche_simple(Copie(simple_noire));
printf("\n\nTest aire : %f\n", aire(pif_noire, 1));
printf("\nTest Meme dessin : \n");
/*
if (meme_dessin(lecture(),lecture())) printf("Vrai\n");
else printf("Faux\n");
if (meme_dessin(lecture(),lecture())) printf("Vrai\n");
else printf("Faux\n");
if (meme_dessin(lecture(),lecture())) printf("Vrai\n");
else printf("Faux\n");
if (meme_dessin(lecture(),lecture())) printf("Vrai\n");
else printf("Faux\n");*/
printf("Carre et carre : ");
if (meme_dessin(carre,carre)) printf("Vrai\n");
else printf("Faux\n");
printf("Carre et damnier : ");
if (meme_dessin(carre,damier)) printf("Vrai\n");
else printf("Faux\n");
printf("pif noire et pif blanche : ");
if (meme_dessin(pif_noire, pif_blanche)) printf("Vrai\n");
else printf("Faux\n");
printf("pif noire et pif noire : ");
if (meme_dessin(pif_noire, pif_noire)) printf("Vrai\n");
else printf("Faux\n");
printf("pif noire et simple noire : ");
if (meme_dessin(pif_noire, simple_noire)) printf("Vrai\n");
else printf("Faux\n");
printf("pif blanche et simple blanche : ");
if (meme_dessin(pif_blanche, simple_blanche)) printf("Vrai\n");
else printf("Faux\n");
/* Résultats pas toujours convaincants*/
printf("\nDifference : ");
printf("Noire et damnier : ");
affiche_simple(Difference(simple_noire,damier));
printf("Damier et Noire : ");
affiche_simple(Difference(damier, simple_noire));
printf("Blanche et damnier : ");
affiche_simple(Difference(simple_blanche,damier));
printf("Damier et Blanche : ");
affiche_simple(Difference(damier, simple_blanche));
printf("Carre et damnier : ");
affiche_simple(Difference(carre,damier));
printf("Carre et carre2 : ");
affiche_simple(Difference(carre,carre2));
printf("Carre et carre : ");
affiche_simple(Difference(carre, carre));
printf("pif et simple noire : ");
affiche_simple(Difference(pif, simple_noire));
printf("pif noire et simple noire : ");
affiche_simple(Difference(pif_noire, simple_noire));
printf("pif noire et pif blanche : ");
affiche_simple(Difference(pif_noire, pif_blanche));
/*printf("Test Lecture Clavier : \n");
image lue = lecture();
printf("Voici l'image lue : \n");
affiche_simple(lue);
affiche_profondeur(lue);*/
printf("Test Compte Sous Image Pleines\n");
image lue = lecture();
printf("%d\n",CSIP(lue, 1));
rendmemoire(&lue);
printf("Negatif avant : ");
affiche_simple(carre);
printf("Negatif apres : ");
Negatif(&carre);
affiche_simple(carre);
/* ne fonctionne pas. */
printf("Rend mémoire : \n" );
//printf("Simple Noire : \n" );
rendmemoire(&simple_noire);
//printf("Simple blanche : \n" );
rendmemoire(&simple_blanche);
//printf("Pif : \n" );
rendmemoire(&pif);
printf("Damier : \n" );
//affiche_simple(damier);
rendmemoire(&damier);
affiche_simple(damier);
printf("Carré : \n" );
//affiche_simple(carre);
rendmemoire(&carre);
affiche_simple(carre);
//printf("Carré 2 : \n" );
rendmemoire(&carre2);
//printf("PifBlanche : \n" );
rendmemoire(&pif_blanche);
//printf("Pif Noire : \n" );
rendmemoire(&pif_noire);
//printf("Affichage rend mémoire : \n" );
//affiche_simple(pif);
}