قناتك يا أستذنا الكريم من القنوات النادرة التي استوفت الدقة والإحاطة والتبسيط والشرح التفصيلي بالإضافة إلى الناحية الرسومية الأنيقة....بارك الله فيك وزادك من نعمة الكثير
mais si le tableau est trie par ordre décroissant comme {3, 2, 1} max1 = max2 = max3 = tab[0] = 3 ce qui n'est pas le résultat attendu ? donc vaut mieux initialiser les max avec le plus petit element du tableau et merci beaucoup pour cette merveilleuse chaîne
#include #include void recherche(int tab[],int cherche,int d,int g); int main() { int tab[]={4,3,12,46,33,3,1,0}; int taille=8; recherche(tab,/*je cherche 3*/3,taille - 1,0); return 0; } void recherche(int tab[],int cherche,int d,int g){ if (g==d){ if (tab[d] == cherche){ printf("Il se trouve dans l'indexe %d !! ",d); return;} else return; } if (tab[g]==cherche){ printf("Il se trouve dans l'indexe %d !! ",g); } recherche(tab,cherche,d,g+1); } Le code sélectionne les 3 plus grands éléments du tableau !! #include #include int main() { int tab[] = {4, 3, 0, 46, 33, 3, 1, 12},idx; for (int j=0;j
قناتك يا أستذنا الكريم من القنوات النادرة التي استوفت الدقة والإحاطة والتبسيط والشرح التفصيلي بالإضافة إلى الناحية الرسومية الأنيقة....بارك الله فيك وزادك من نعمة الكثير
شكرا أستاذ على كل مجهوداتك😊😊
Merci monsieur pour votre explication
بارك الله فيك ❤ جعلها الله في ميزان حسناتك
Hassan en français... Merci d'avance!
mais si le tableau est trie par ordre décroissant comme {3, 2, 1}
max1 = max2 = max3 = tab[0] = 3
ce qui n'est pas le résultat attendu ?
donc vaut mieux initialiser les max avec le plus petit element du tableau
et merci beaucoup pour cette merveilleuse chaîne
جزاك الله خيرا ...ممكن اسم البرنامج الذي تستعمله في عمل هذه الدروس ؟
kemel 3afak f algorithms ochokran bzaaf lah ysehel 3lek
Merci
من فضلك لا تضع الموسيقى و صور لنساء غير محجبات في فيديوهاتك
في حال ما لقيناش العدد كنا قادرين نديرو return NULL؟
sad ila kan momkin chi video ikon fih kalimat 3iwad ar9am
sad wakha tcherh lina tamarin li kaynin fe pool 1337
keemel please
#include
#include
void recherche(int tab[],int cherche,int d,int g);
int main() {
int tab[]={4,3,12,46,33,3,1,0};
int taille=8;
recherche(tab,/*je cherche 3*/3,taille - 1,0);
return 0;
}
void recherche(int tab[],int cherche,int d,int g){
if (g==d){
if (tab[d] == cherche){
printf("Il se trouve dans l'indexe %d !!
",d);
return;}
else return;
}
if (tab[g]==cherche){
printf("Il se trouve dans l'indexe %d !!
",g);
}
recherche(tab,cherche,d,g+1);
}
Le code sélectionne les 3 plus grands éléments du tableau !!
#include
#include
int main() {
int tab[] = {4, 3, 0, 46, 33, 3, 1, 12},idx;
for (int j=0;j