From 85e1c6adc404ccff8da30d4ffdad0d1905abff62 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 3 Mar 2017 18:30:37 +0100 Subject: [PATCH] Fix a typo in quick sort implementation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- TP3/tp3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1