blob: d1412107787ff0a8772b5a2f0a2417e0671959da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <stdio.h>
#include "multi_ensembles.h"
element_t *CreationMultiEnsemble(int deb, int n, int freq){
element_t *liste=NULL;
int i;
for (i=deb+n-1; i >=deb; i--) {
liste=Ajout_tete_ensemble(liste,i,freq);
}
return liste;
}
int main() {
element_t *ensemble1= CreationMultiEnsemble(1,20,1);
element_t *ensemble2= CreationMultiEnsemble(5,10,2);
Affiche_ensemble(ensemble1);
printf("====\n");
Affiche_ensemble(ensemble2);
printf("====\n");
printf("%d\n",Intersection_vide(ensemble1, ensemble2));
printf("%d\n",Intersection_vide(ensemble2, ensemble1));
return 0;
}
|