-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojet2.h
71 lines (46 loc) · 1.53 KB
/
projet2.h
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
//
// Created by victo on 08/12/2017.
//
#ifndef PROJET2_PROJET2_H
#define PROJET2_PROJET2_H
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <stdio.h>
#define TAILLE_MAX 10000
typedef struct // structure des personnes
{
char* nom;
char* prenom;
int salaire;
int index;
}infoPersonne;
typedef struct // sous-tableau de personne avec le mm index
{
int tailletab;
infoPersonne* tabInfo;
int index_struct;
}classePerso;
typedef struct // structure du tableau contenant les pointeurs vers les sous tableau
{
int base;
int taille;
classePerso* tableauComplet;
}structComplet;
char* comparaison( char* chaine1, char* chaine2);
structComplet* initialisation(int taille, int base);
void permuter(infoPersonne * pers1,infoPersonne * pers2);
int index(infoPersonne* perso,int base, int taille);
unsigned long long int puissance(int N, unsigned long long int resultat, int puiss);
void tri(classePerso* sous_tableau);
bool ajouter(char* nom, char* prenom, int salaire,structComplet* structComplete);
bool charger(structComplet* structComplete,int nombre);
char* demande();
void viderBuffer(char* chaine);
void afficher_salaire(structComplet* structureComplete);
void afficher_entre(structComplet* all, int nbrcharg);
int nombre_conflit(structComplet* all);
double taille_conflit_moyen(structComplet* all);
bool supprimer(structComplet* all);
bool supprimer_entre(structComplet* all);
#endif //PROJET2_PROJET2_H