X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=TP3%2Ftp3.c;h=8baa7dcf890d6d1df499f49d0a5c09c78a1b5042;hb=85e1c6adc404ccff8da30d4ffdad0d1905abff62;hp=9198ad1e15ba4e245b857e124f170b28e609ee4f;hpb=7287cc551ef645485897f9fa58942b076f4af5e4;p=Algorithmic_C.git diff --git a/TP3/tp3.c b/TP3/tp3.c index 9198ad1..8baa7dc 100644 --- a/TP3/tp3.c +++ b/TP3/tp3.c @@ -7,7 +7,7 @@ void AfficheTab(int T[], int n) { } } -/** This quick sort implementation only work with 2^n array size */ +/** This merge sort implementation only work with 2^n array size */ void TriFusion(int T[], int n) { int i = 0, j = 0, k = 0; int* T1;