Skip to content
Snippets Groups Projects

makefile et autres

Open LEPPERT MICHAEL requested to merge mleppert/P4z:master into master
Viewing commit d6634e63
Show latest version
6 files
+ 51
15
Preferences
Compare changes
Files
6
+ 11
8
@@ -16,14 +16,6 @@ void afficheTab(long tabAAffiche[], size_t tabTaille){
printf(" ]\n");
}
void comparer(){
}
void ecrire(){
}
void genTabAlea(long tabARemplir[], size_t tailleTab) {
int rand_is_seeded = 0;
if(!rand_is_seeded)
@@ -35,3 +27,14 @@ void genTabAlea(long tabARemplir[], size_t tailleTab) {
tabARemplir[i]=rand()%(10);
}
}
void compter(int* i){
*i += 1;
}
void affiche_infos(struct compteur cpt){
printf("nombre de comparaisons : %d\n", cpt.comparaison);
printf("nombre d'écritures : %d\n", cpt.ecriture);
printf("nombre de fusions : %d\n", cpt.fusion);
printf("nombre de partitions : %d\n", cpt.partition);
}