week9 quick sort change to median3 method

This commit is contained in:
2021-04-28 23:14:37 +08:00
parent d9790182c8
commit cd40e98e6b
2 changed files with 35 additions and 13 deletions

View File

@@ -3,7 +3,7 @@
void QuickSort(int *A, int left, int right);
int Partition(int *A, int left, int right);
int Median3(int *A, int left, int right);
void HeapSort(int *A, int n);