[cpp][12_sorts] quick_sort, done.

This commit is contained in:
Liam Huang 2018-10-17 17:18:06 +08:00
parent 1dc77a853a
commit eca8cb407f
2 changed files with 96 additions and 0 deletions

View File

@ -0,0 +1,71 @@
/**
* Created by Liam Huang (Liam0205) on 2018/10/17.
*/
#ifndef SORTS_QUICK_SORT_HPP_
#define SORTS_QUICK_SORT_HPP_
#include <functional>
#include <iterator>
#include <algorithm>
#include <utility>
namespace detail {
template <typename T, typename Compare = std::less<T>>
const T& median(const T& a, const T& b, const T& c, Compare comp = Compare()) {
if (comp(a, b) and comp(b, c) or comp(c, b) and comp(b, a)) {
return b;
} else if (comp(b, c) and comp(c, a) or comp(a, c) and comp(c, b)) {
return c;
} else {
return a;
}
}
template <typename Iter,
typename T = typename std::iterator_traits<Iter>::value_type,
typename Compare = std::less<T>>
const T& iter_median(Iter a, Iter b, Iter c, Compare comp = Compare()) {
return median(*a, *b, *c, comp);
}
template <typename BidirIt,
typename T = typename std::iterator_traits<BidirIt>::value_type,
typename Compare = std::less<T>>
std::pair<BidirIt, BidirIt> inplace_partition(BidirIt first,
BidirIt last,
const T& pivot,
Compare comp = Compare()) {
BidirIt last_less, last_greater, first_equal, last_equal;
for (last_less = first, last_greater = first, first_equal = last;
last_greater != first_equal; ) {
if (comp(*last_greater, pivot)) {
std::iter_swap(last_greater++, last_less++);
} else if (comp(pivot, *last_greater)) {
++last_greater;
} else { // pivot == *last_greater
std::iter_swap(last_greater, --first_equal);
}
}
const auto cnt = std::distance(first_equal, last);
std::swap_ranges(first_equal, last, last_less);
first_equal = last_less;
last_equal = first_equal + cnt;
return {first_equal, last_equal};
}
} // namespace detail
template <typename BidirIt,
typename T = typename std::iterator_traits<BidirIt>::value_type,
typename Compare = std::less<T>>
void quick_sort(BidirIt first, BidirIt last, Compare comp = Compare()) {
for (auto size = std::distance(first, last); size > 1; size = std::distance(first, last)) {
const T pivot = detail::iter_median(first, last - 1, first + size / 2, comp);
const auto eq = detail::inplace_partition(first, last, pivot, comp);
quick_sort(first, eq.first, comp);
first = eq.second; // Liam Huang: economize half of recursive calling.
}
}
#endif // SORTS_QUICK_SORT_HPP_

View File

@ -0,0 +1,25 @@
/**
* Created by Liam Huang (Liam0205) on 2018/10/17.
*/
#include <iostream>
#include <vector>
#include <algorithm>
#include "quick_sort.hpp"
void test_quick_sort(std::vector<int> test_data) {
quick_sort(test_data.begin(), test_data.end());
std::transform(test_data.begin(), test_data.end(),
std::ostream_iterator<int>(std::cout, " "), [](int i){ return i; });
std::cout << '\n';
}
int main() {
test_quick_sort({-3, -1, 1, -2, -3, 0, -3, 100, 1, 1, -100});
test_quick_sort({1, 1, 1});
test_quick_sort({1, 0, -1});
test_quick_sort({1});
return 0;
}