23 - Algorithme de recherche : Recherche Dichotomique

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ธ.ค. 2024

ความคิดเห็น • 17

  • @soubeirabdirahm9181
    @soubeirabdirahm9181 2 ปีที่แล้ว +1

    Merci infiniment madame j'ai tout compris vous expliquez d'une manière très Claire

  • @laurab1475
    @laurab1475 2 ปีที่แล้ว +4

    Merci beaucoup pour votre vidéo, j'ai tout compris grâce à vous ❤️

  • @VaheTildian
    @VaheTildian ปีที่แล้ว

    Merci pour cette présentation très simple et très enrichissante!

  • @thiziribengherbi7024
    @thiziribengherbi7024 3 ปีที่แล้ว +1

    Vous expliquez très clairement je vous remercie infiniment

  • @snipergamer_8043
    @snipergamer_8043 3 ปีที่แล้ว +1

    Merci beaucoup
    La plus belle professeure d'informatique ❤

  • @mohamedmansour9263
    @mohamedmansour9263 2 ปีที่แล้ว +1

    merci beaucoup madame j'espère que vous de partager avec nous plusieurs vidéos de l 'algorthime

  • @hindchaouki9011
    @hindchaouki9011 2 ปีที่แล้ว +1

    Merci beaucoup, vraiment ça m'a beaucoup aidé 💕

  • @idrissandao9968
    @idrissandao9968 2 ปีที่แล้ว +1

    Une très bonne explication

  • @AdnaneLAMKADEM
    @AdnaneLAMKADEM ปีที่แล้ว

    Merci bcp Mme.

  • @theuser7800
    @theuser7800 2 ปีที่แล้ว +1

    bonne explication merci

  • @roromicha5138
    @roromicha5138 ปีที่แล้ว

    Mrc bcp ♥️♥️♥️

  • @mbenelo5446
    @mbenelo5446 ปีที่แล้ว +1

    merci bcp

  • @imanesijalmasi5971
    @imanesijalmasi5971 4 ปีที่แล้ว +4

    Vous expliquez de manière très claire, merci encore. Pouvez-vous faire une vidéo sur un algorithme de recherche dichotomique de la dernière occurrence d'un élément, svp ? Merci encore et BRAAVOOO

    • @dellpi3911
      @dellpi3911 3 ปีที่แล้ว +1

      th-cam.com/video/fRyUf-GY754/w-d-xo.html

  • @rh_nedhir
    @rh_nedhir 2 ปีที่แล้ว

    merci infiniment

  • @oussamahattab9489
    @oussamahattab9489 3 ปีที่แล้ว

    pourquoi il va retourne -1 ?

  • @crypto5hedge619
    @crypto5hedge619 ปีที่แล้ว

    Que pensez vous de cet algorithme de recherche dichotomique qui est beaucoup plus rapide que celui présenté dans la vidéo ?
    #include
    #include
    void afficher(int T[],int n);
    void remplir(int T[],int n);
    void tri_selection_max(int A[],int N);
    void insertion(int A[],int *N);
    int recherche_dichotomie(int A[],int N,int VAL);
    int main()
    {
    int tableau[20];
    int N;
    do
    {
    printf("Veuillez saisir un nombre d'elements du tableau inferieur ou egal a 20:
    ");
    scanf("%d", &N );
    }
    while((N>20)||(N