-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTri automatique.c
88 lines (80 loc) · 1.99 KB
/
Tri automatique.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdbool.h>
int compareEntier(const void *pEntier1, const void *pEntier2)
{
return (*(int *)(pEntier1) - *(int *)(pEntier2));
}
bool estSouple(int ListeS, int ObjetsS[ListeS], int Averifier)
{
int Moy1 = ListeS / 4;
int Moy2 = 2 * Moy1, Moy3 = 3 * Moy1;
bool resultat = false;
if (Averifier < ObjetsS[Moy1])
{
for (int O = 0; O < Moy1; O++)
if (Averifier == ObjetsS[O])
{
resultat = true;
break;
}
else if (Averifier < ObjetsS[O])
break;
}
else if (Averifier < ObjetsS[Moy2])
{
for (int O = Moy1; O < Moy2; O++)
if (Averifier == ObjetsS[O])
{
resultat = true;
break;
}
else if (Averifier < ObjetsS[O])
break;
}
else if (Averifier < ObjetsS[Moy3])
{
for (int O = Moy2; O < Moy3; O++)
if (Averifier == ObjetsS[O])
{
resultat = true;
break;
}
else if (Averifier < ObjetsS[O])
break;
}
else
{
for (int O = Moy3; O < ListeS; O++)
if (Averifier == ObjetsS[O])
{
resultat = true;
break;
}
else if (Averifier < ObjetsS[O])
break;
}
return resultat;
}
int main()
{
int ListeS;
scanf(" %d", &ListeS);
int ObjetsS[ListeS];
for (int Objet = 0; Objet < ListeS; Objet++)
scanf(" %d", &ObjetsS[Objet]);
qsort(ObjetsS, ListeS, 4, compareEntier);
int resultat = 0;
int ListeP;
scanf(" %d", &ListeP);
int ObjetsP[ListeP];
for (int Objet = 0; Objet < ListeP; Objet++)
{
scanf(" %d", &ObjetsP[Objet]);
if (estSouple(ListeS, ObjetsS, ObjetsP[Objet]))
resultat++;
}
printf("%d", resultat);
}