目前我得到了这个:
struct employe{
char nomE[25];
char posteE;
float nbHeureE;
float tauxE;
} employes[16];
int nbPers = 0;
void readFile(){
int i=0;
FILE * entree;
if(entree = fopen("employes.dat", "r"))
{
fscanf(entree, "%24c %c %f %f", &employes[i].nomE, &employes[i].posteE, &employes[i].nbHeureE, &employes[i].tauxE);
nbPers++;
while(!feof(entree))
{
i++;
fscanf(entree, "%24c %c %f %f", &employes[i].nomE, &employes[i].posteE, &employes[i].nbHeureE, &employes[i].tauxE);
nbPers++;
}
fclose(entree);
}
else printf("Impossible d'ouvrir le fichier!\n");
}
void trier(struct employe employes[], int nbPers){
int j,i,k;
struct employe temp;
for(i=0;i<16;i++)
{
for(j=1;j<15;j++)
{
if(strcmp(employes[i].nomE, employes[j].nomE) < 0)
{
temp = employes[i];
employes[i] =employes[j];
employes[j] = temp;
}
}
}
}
int main() {
int p=0;
readFile();
trier(employes, nbPers);
for(p=0; p<nbPers; p++)
printf("%s", employes[p].nomE);
return 0;
}
employes.dat看起来像这样:
Tremblay Alain A 35.0 35.5
Vachon Jean P 40.0 22.75
Lapalme Justin O 40.0 15.75
Deschenes Sylvie P 35.0 25.0
Lachance Carl O 37.5 18.0
Labonte Chantal P 40.0 20.0
Doucet Michel A 40.0 33.75
Desjardins Alex P 35.0 25.0
Tardif Guy A 40.0 28.5
Clinclin Stephane O 40.0 20.75
Lafleur Marie A 37.5 32.75
Desbiens Robert P 35.0 25.0
Desautels Maryse P 35.0 26.0
St-germain guy O 37.5 15.0
Bourgeois Louis A 37.5 29.0
St-amour Flavie P 40.0 25.0
我试图按名称(char nomE [25];)按字母顺序对我的员工结构进行排序。但是,出于某种原因,它会对第一个名称进行排序并输出:
Tremblay Alain
Bourgeois Louis
Clinclin Stephane
Desautels Maryse
Desbiens Robert
Deschenes Sylvie
Desjardins Alex
Doucet Michel
Labonte Chantal
Lachance Carl
Lafleur Marie
Lapalme Justin
St-amour Flavie
St-germain guy
Tardif Guy
Vachon Jean
如果有人知道为什么,我真的很感激答案。提前谢谢。
答案 0 :(得分:0)
更改:
for(i=0;i<16;i++) {
for(j=1;j<15;j++){
为:
for(i=0;i<16;i++) {
for(j=0;j<15;j++){
修改强>:
您已将 SelectionSort 与 BubbleSort 混淆。 SelectionSort与i = 0
和j = i + 1
以及i < 15
和j < 16
一起使用,而BubbleSort则从i = 1
到i < 16
和j = 0
和j < 15
。上面给出的版本的缺点是它比需要的交换少一些,但仍然在最后产生正确的结果。请参阅我在 ideone.com 环境中的实施评论。
因为您在第一次迭代后跳过检查第一个元素。