-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuickSort_Sequential.cpp
50 lines (40 loc) · 1.74 KB
/
QuickSort_Sequential.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <iostream>
#include <list>
#include <algorithm>
#include <future>
std::ostream& operator<<(std::ostream& ostr, const std::list<int>& list)
{
for (const auto &i : list)
{
ostr << " " << i;
}
return ostr;
}
// sequential style, recursive
// code from C++ Concurrency in Action (2nd Edition)
template<typename T>
std::list<T> sequential_quick_sort(std::list<T> input)
{
if (input.empty())
return input;
std::list<T> result;
result.splice(result.begin(), input, input.begin());
T const& pivot = *result.begin();
auto divide_point = std::partition(input.begin(), input.end(),
[&](T const& t) { return t < pivot; });
std::list<T> lower_part;
lower_part.splice(lower_part.end(), input, input.begin(), divide_point);
auto new_lower(sequential_quick_sort(std::move(lower_part)));
auto new_higher(sequential_quick_sort(std::move(input)));
result.splice(result.end(), new_higher);
result.splice(result.begin(), new_lower);
return result;
}
int main()
{
std::list<int> input_list = { -21,10,17,8,4,26,5,35,33,-7,-16,27,-12,6,29,-12,5,9,20,14,14,2,13,-24,21,23,-21,5,-21,10,17,8,4,26,5,35,33,-7,-16,27,-12,6,29,-12,5,9,20,14,14,2,13,-24,21,23,-21,5,-21,10,17,8,4,26,5,35,33,-7,-16,27,-12,6,29,-12,5,9,20,14,14,2,13,-24,21,23,-21,5,-21,10,17,8,4,26,5,35,33,-7,-16,27,-12,6,29,-12,5,9,20,14,14,2,13,-24,21,23,-21,5,-21,10,17,8,4,26,5,35,33,-7,-16,27,-12,6,29,-12,5,9,20,14,14,2,13,-24,21,23,-21,5,-21,10,17,8,4,26,5,35,33,-7,-16,27,-12,6,29,-12,5,9,20,14,14,2,13,-24,21,23,-21,5,-21,10,17,8,4,26,5,35,33,-7,-16,27,-12,6,29,-12,5,9,20,14,14,2,13,-24,21,23,-21,5 };
std::cout << "input list: " << input_list << "\n";
std::list<int> sort_list = sequential_quick_sort(input_list);
std::cout << "sorted list: " << sort_list << std::endl;
return 0;
}