不能在C中显示数组的所有元素?



我的数组有一些麻烦。我想对一个包含5个整数元素的数组进行排序。然而,当我显示它们时,它只显示最后一个元素,并且它的值不是我期望在排序后得到的值。

因此,你能帮我解决这个问题吗?

N。B:这是我的代码

main.h

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/* 
* File:   main.h
* Author: Yacin
*
* Created on 19 septembre 2021, 12:49
*/
#ifndef MAIN_H
#define MAIN_H
int sommeTableau(int tab[], int taille);
int moyenneTableau(int tab[], int taille);
int * copieTableau(int tab1[], int tab2[], int taille);
int * valMaxTableau(int tab[], int taille, int valMax);
int * ordonnerTableau(int tab[], int taille);

#ifdef __cplusplus
extern "C" {
#endif


#ifdef __cplusplus
}
#endif
#endif /* MAIN_H */

main.c - ordonnerTableau函数:

int * ordonnerTableau(int tab[], int taille){
int tmp;
int i;
for (i = 0; i < taille; i++){
int j = 0;
while(tab[j] > tab[j+1]){
tmp = tab[j];
tab[j] = tab[j+1];
tab[j+1] = tmp;
j++;
}   
}
return tab;
}

main.c - main函数:

int main(int argc, char** argv) {
int dtab[5] = {12, 9, 2, 1, 0};
printf("Avant :n");
for (int k = 0; k < 5; k++) {
printf("tab[%d]=%dn",k , dtab[k]);
}

printf("n");

printf("Après :n");    
for (int j = 0; j < 5; j++) {
printf("tab[%d]=%d n",j ,*(ordonnerTableau(dtab, 5) + j));
}

输出:

Avant :
tab[0]=12
tab[1]=9
tab[2]=2
tab[3]=1
tab[4]=0
Après :
tab[4]=0

期望输出:

dtab[5] = {0,1,2,9,12}

任何帮助都将非常感激。

致意。

欧美

  1. 您不应该使用5硬编码数组的大小。相反,您应该使用sizeof(dtab)/sizeof(dtab[0])

  2. ordonnerTableau中,您有taille=5,但您试图在这些位置上获取tab:tab[j] > tab[j+1]而不确定jj+1小于5。

相关内容

  • 没有找到相关文章

最新更新