repositories
/
Algorithmic_C.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7287cc5
)
Fix a typo in quick sort implementation
author
Jérôme Benoit
<jerome.benoit@piment-noir.org>
Fri, 3 Mar 2017 17:30:37 +0000
(18:30 +0100)
committer
Jérôme Benoit
<jerome.benoit@piment-noir.org>
Fri, 3 Mar 2017 17:30:37 +0000
(18:30 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
TP3/tp3.c
patch
|
blob
|
blame
|
history
diff --git
a/TP3/tp3.c
b/TP3/tp3.c
index 9198ad1e15ba4e245b857e124f170b28e609ee4f..8baa7dcf890d6d1df499f49d0a5c09c78a1b5042 100644
(file)
--- 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;