Skip to content
Snippets Groups Projects

makefile et autres

Open LEPPERT MICHAEL requested to merge mleppert/P4z:master into master
Viewing commit 98a50876
Show latest version
6 files
+ 77
26
Preferences
Compare changes
Files
6
+ 34
0
@@ -32,6 +32,40 @@ void compter(int* i){
*i += 1;
}
void genTabConst(long tabARemplir[], size_t tailleTab) {
for(size_t i=0; i<tailleTab; i++){
tabARemplir[i]=1;
}
}
void genTabNeg(long tabARemplir[], size_t tailleTab) {
int rand_is_seeded = 0;
if(!rand_is_seeded)
{
srand(time(NULL));
rand_is_seeded = 1;
}
for(size_t i=0; i<tailleTab; i++){
tabARemplir[i]=rand()%(10)*-1;
}
}
void genTabDecroi(long tabARemplir[], size_t tailleTab) {
int rand_is_seeded = 0;
if(!rand_is_seeded)
{
srand(time(NULL));
rand_is_seeded = 1;
}
for(size_t i=0; i<tailleTab; i++){
tabARemplir[i]=rand()%(10);
}
qsort( tabARemplir, tailleTab, sizeof(long), longComparator );
}
int longComparator ( const void * first, const void * second ) {
return ( *(long*)second - *(long*)first );
}
void affiche_infos(struct compteur cpt){
printf("nombre de comparaisons : %d\n", cpt.comparaison);
printf("nombre d'écritures : %d\n", cpt.ecriture);