Tri Par Insertion

Télécharger au format docx, pdf ou txt
Télécharger au format docx, pdf ou txt
Vous êtes sur la page 1sur 1

Tri par insertion. #include <stdio.

h> main() { /* Prototypes des fonctions appeles */ void TRI_INSERTION(int *T, int N); void LIRE_TAB (int *TAB, int *N, int NMAX); void ECRIRE_TAB (int *TAB, int N); /* Variables locales */ int T[100]; /* Tableau d'entiers */ int DIM; /* Dimension du tableau */ /* Traitements */ LIRE_TAB (T, &DIM, 100); printf("Tableau donn : \n"); ECRIRE_TAB (T, DIM); TRI_INSERTION(T, DIM); printf("Tableau tri : \n"); ECRIRE_TAB (T, DIM); return 0; }

void TRI_INSERTION(int *T, int N) { void INSERER(int X, int *T, int *N); /* Variables locales */ int I; I=1; while (I<N) INSERER(*(T+I), T, &I); } void INSERER(int X, int *T, int *N) { . . . } /* indice courant */ /* Tri de T par insertion */

Vous aimerez peut-être aussi

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy