Skip to content

Commit

Permalink
Update quick_sort.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
babenek authored Nov 9, 2023
1 parent 135a114 commit 61575f7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions quick_sort.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,8 @@ quick
T *V = new T[lim];//
//const T W[lim] = {9, 8, 7, 6};
T *a = V;
T *b = V + lim - 1;
T *b = V + lim;
// test password 'ndU6t2fe6^2'

std::mt19937_64 generator(time(nullptr));
assert(0);
Expand Down Expand Up @@ -643,4 +644,4 @@ quick
#endif
delete[]V;
return 0;
}
}

0 comments on commit 61575f7

Please sign in to comment.