We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfee2ae commit e6fe0bcCopy full SHA for e6fe0bc
1 file changed
QuickSort/README.md
@@ -47,9 +47,7 @@ int select_pivot(int arr[], int low) {
47
void quick_sort(int arr[], int low, int high) {
48
int i, j, pivot;
49
if (low >= high) return;
50
- // pivot = select_pivot(arr, low);
51
- // pivot = select_pivot_random(arr, low, high);
52
- pivot = select_pivot_median_of_three(arr, low, high);
+ pivot = select_pivot(arr, low);
53
i = low;
54
j = high;
55
while (i != j) {
0 commit comments