-
Notifications
You must be signed in to change notification settings - Fork 2
/
quicksort.cpp
90 lines (70 loc) · 1.98 KB
/
quicksort.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* Copyright (c) 2007 the authors listed at the following URL, and/or
the authors of referenced articles or incorporated external code:
http://en.literateprograms.org/Quicksort_(C_Plus_Plus)?action=history&offset=20070928075422
Retrieved from: http://en.literateprograms.org/Quicksort_(C_Plus_Plus)?oldid=10979
*/
// Adding comment at start of file
// Adding a new line here
//new comment for quicksort
#include <time.h>
#include <iostream>
#include <string>
#include "quicksort.h"
template<typename IT> IT partition(IT begin, IT end, IT pivot)
{
typename std::iterator_traits<IT>::value_type piv(*pivot);
std::swap(*pivot, *(end-1));
IT store=begin;
for(IT it=begin; it!=end-1; ++it) {
if(*it<=piv) {
std::swap(*store, *it);
++store;
}
}
std::swap(*(end-1), *store);
return store;
}
template<typename IT> IT pivot_median(IT begin, IT end)
{
IT pivot(begin+(end-begin)/2);
if(*begin<=*pivot && *(end-1)<=*begin) pivot=begin;
else if(*(end-1)<=*pivot && *begin<=*(end-1)) pivot=end-1;
return pivot;
}
template<typename IT> pivot_random<IT>::pivot_random()
{
srand((unsigned int)time(NULL));
}
template<typename IT> IT pivot_random<IT>::operator()(IT begin, IT end) {
return begin+(rand()%(end-begin));
}
template<typename IT, typename PF> void quick_sort(IT begin, IT end, PF pf)
{
if(end-1>begin) {
IT pivot=pf(begin, end);
pivot=partition(begin, end, pivot);
quick_sort(begin, pivot, pf);
quick_sort(pivot+1, end, pf);
}
}
template<typename IT> void quick_sort(IT begin, IT end)
{
quick_sort(begin, end, pivot_random<IT>());
}
template<typename T> void print(const T &data)
{
std::cout<<" "<<data;
}
// dummy definitions for template instantiation
void dummyforInstantiation() // can't make this static: instantiated templates will not be visible to linker
{
int i;
std::string str;
print(i);
print(str);
pivot_random<int*> pv;
quick_sort(&i, &i, pv);
std::vector<std::string>::iterator iter;
quick_sort(iter, iter);
}
// This is the end of file comment