Skip to content

Commit

Permalink
revise: README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fiteen committed Dec 19, 2019
1 parent cfee2ae commit e6fe0bc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions QuickSort/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,7 @@ int select_pivot(int arr[], int low) {
void quick_sort(int arr[], int low, int high) {
int i, j, pivot;
if (low >= high) return;
// pivot = select_pivot(arr, low);
// pivot = select_pivot_random(arr, low, high);
pivot = select_pivot_median_of_three(arr, low, high);
pivot = select_pivot(arr, low);
i = low;
j = high;
while (i != j) {
Expand Down

0 comments on commit e6fe0bc

Please sign in to comment.