2019-03-09 18:13:08 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-07 12:46:02 +03:00
|
|
|
#include <AK/StdLibExtras.h>
|
|
|
|
|
2019-03-09 18:13:08 +03:00
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
bool is_less_than(const T& a, const T& b)
|
|
|
|
{
|
|
|
|
return a < b;
|
|
|
|
}
|
|
|
|
|
2019-05-28 12:53:16 +03:00
|
|
|
template<typename Iterator, typename LessThan>
|
2019-05-19 02:53:51 +03:00
|
|
|
void quick_sort(Iterator start, Iterator end, LessThan less_than = is_less_than)
|
2019-03-09 18:13:08 +03:00
|
|
|
{
|
2019-05-19 02:53:51 +03:00
|
|
|
int size = end - start;
|
2019-05-26 02:41:48 +03:00
|
|
|
if (size <= 1)
|
2019-03-09 18:13:08 +03:00
|
|
|
return;
|
2019-05-19 02:53:51 +03:00
|
|
|
|
|
|
|
int pivot_point = size / 2;
|
|
|
|
auto pivot = *(start + pivot_point);
|
|
|
|
|
|
|
|
if (pivot_point)
|
|
|
|
swap(*(start + pivot_point), *start);
|
|
|
|
|
|
|
|
int i = 1;
|
|
|
|
for (int j = 1; j < size; ++j) {
|
|
|
|
if (less_than(*(start + j), pivot)) {
|
2019-05-28 12:53:16 +03:00
|
|
|
swap(*(start + j), *(start + i));
|
2019-05-19 02:53:51 +03:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
swap(*start, *(start + i - 1));
|
|
|
|
quick_sort(start, start + i - 1, less_than);
|
|
|
|
quick_sort(start + i, end, less_than);
|
2019-03-09 18:13:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
using AK::quick_sort;
|