-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctionobjects.cpp
401 lines (310 loc) · 10.5 KB
/
functionobjects.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
/*
Copyright 2007-2008 Adobe Systems Incorporated
Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt
or a copy at http://stlab.adobe.com/licenses.html )
This test file started life as
ISO/IEC TR 18015:2006(E) Appendix D.4
Goals:
Compare the performance of function pointers, functors, inline functors,
standard functors, and native comparison operators
Also compare the performance of qsort(), quicksort template, and std::sort
Assumptions:
1) inline functors, standard functors and inlined native
comparisons will perform similarly
2) using functors is faster than using function pointers
3) inline functors are as fast or faster than out of line functors
4) a template is at least as fast as a hard coded function of
the same algorithm, sometimes faster
5) std::sort is faster than qsort()
6) std::sort is faster than a naive quicksort template using the same functor
Since qsort's comparison function must return int (less than 0, 0, greater than 0)
and std::sort's must return a bool, it is not possible to test them with each
other's comparator.
*/
/******************************************************************************/
#include <functional>
#include <algorithm>
#include <cstdlib>
#include "benchmark_results.h"
#include "benchmark_timer.h"
using namespace std;
/******************************************************************************/
template <class Iterator>
void verify_sorted(Iterator first, Iterator last) {
Iterator prev = first;
first++;
while (first != last) {
if (*first++ < *prev++) {
printf("test %i failed\n", current_test);
break;
}
}
}
/******************************************************************************/
// --------- helper functions --------------------------------------------
// qsort passes void * arguments to its comparison function,
// which must return negative, 0, or positive value
int
less_than_function1( const void * lhs, const void * rhs )
{
if( *(const double *) lhs < *(const double *) rhs ) return -1;
if( *(const double *) lhs > *(const double *) rhs ) return 1;
return 0;
}
// std::sort, on the other hand, needs a comparator that returns true or false
bool
less_than_function2( const double lhs, const double rhs )
{
return( lhs < rhs? true : false );
}
// the comparison operator in the following functor is defined out of line
struct less_than_functor
{
bool operator()( const double& lhs, const double& rhs ) const;
};
bool
less_than_functor::operator()( const double& lhs, const double& rhs ) const
{
return( lhs < rhs? true : false );
}
// the comparison operator in the following functor is defined inline
struct inline_less_than_functor
{
inline bool operator()( const double& lhs, const double& rhs ) const
{
return( lhs < rhs? true : false );
}
};
/******************************************************************************/
// hard coded comparison function
template<class Iterator>
void quicksort(Iterator begin, Iterator end)
{
// this only works for pointers and STL iterators
typedef typename iterator_traits<Iterator>::value_type T;
if ( (end - begin) > 1 ) {
T middleValue = *begin;
Iterator left = begin;
Iterator right = end;
for(;;) {
while ( middleValue < *(--right) );
if ( !(left < right ) ) break;
while ( *(left) < middleValue )
++left;
if ( !(left < right ) ) break;
// swap
T temp = *right;
*right = *left;
*left = temp;
}
quicksort( begin, right + 1 );
quicksort( right + 1, end );
}
}
/******************************************************************************/
// comparison function passed in as a functor
template<class Iterator, typename Comparator>
void quicksort(Iterator begin, Iterator end, Comparator compare)
{
// this only works for pointers and STL iterators
typedef typename iterator_traits<Iterator>::value_type T;
if ( (end - begin) > 1 ) {
T middleValue = *begin;
Iterator left = begin;
Iterator right = end;
for(;;) {
while ( compare( middleValue, *(--right) ) );
if ( !(left < right ) ) break;
while ( compare( *(left), middleValue ) )
++left;
if ( !(left < right ) ) break;
// swap
T temp = *right;
*right = *left;
*left = temp;
}
quicksort( begin, right + 1, compare );
quicksort( right + 1, end, compare );
}
}
/******************************************************************************/
typedef bool comparator_function( const double x, const double y );
// use a pointer to function as a template parameter
// exact function is known at compile time, and can be inlined
template<class Iterator, comparator_function compare>
void quicksort(Iterator begin, Iterator end)
{
// this only works for pointers and STL iterators
typedef typename iterator_traits<Iterator>::value_type T;
if ( (end - begin) > 1 ) {
T middleValue = *begin;
Iterator left = begin;
Iterator right = end;
for(;;) {
while ( compare( middleValue, *(--right) ) );
if ( !(left < right ) ) break;
while ( compare( *(left), middleValue ) )
++left;
if ( !(left < right ) ) break;
// swap
T temp = *right;
*right = *left;
*left = temp;
}
quicksort( begin, right + 1, compare );
quicksort( right + 1, end, compare );
}
}
/******************************************************************************/
// use a function pointer
// most compilers will not inline the function argument
void quicksort_function(double* begin, double* end, comparator_function compare)
{
if ( (end - begin) > 1 ) {
double middleValue = *begin;
double* left = begin;
double* right = end;
for(;;) {
while ( compare( middleValue, *(--right) ) );
if ( !(left < right ) ) break;
while ( compare( *(left), middleValue ) )
++left;
if ( !(left < right ) ) break;
// swap
double temp = *right;
*right = *left;
*left = temp;
}
quicksort( begin, right + 1, compare );
quicksort( right + 1, end, compare );
}
}
/******************************************************************************/
int main(int argc, char* argv[])
{
int i;
int iterations = (1 < argc) ? atoi(argv[1]) : 2000; // number of iterations
int tablesize = (2 < argc) ? atoi(argv[2]) : 10000; // size of array
// output command for documentation
for (i = 0; i < argc; ++i)
printf("%s ", argv[i] );
printf("\n");
// seed the random number generator, so we get repeatable results
srand( tablesize + 123 );
// initialize the table to sort
double * master_table = new double[tablesize];
for( int n = 0; n < tablesize; ++n )
{
master_table[n] = static_cast<double>( rand() );
}
double * table = new double[tablesize]; // working copy
// here is where the timing starts
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
qsort( table, tablesize, sizeof(double), less_than_function1 );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "qsort array with function pointer" );
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
quicksort_function( table, table + tablesize, less_than_function2 );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "quicksort function array with function pointer" );
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
quicksort( table, table + tablesize, less_than_function2 );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "quicksort template array with function pointer" );
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
quicksort<double *, less_than_function2 >( table, table + tablesize );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "quicksort template array with template function pointer" );
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
sort( table, table + tablesize, less_than_function2 );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "sort array with function pointer" );
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
quicksort( table, table + tablesize, less_than_functor() );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "quicksort template array with user-supplied functor" );
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
sort( table, table + tablesize, less_than_functor() );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "sort array with user-supplied functor");
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
quicksort( table, table + tablesize, inline_less_than_functor() );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "quicksort template array with user-supplied inline functor" );
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
sort( table, table + tablesize, inline_less_than_functor() );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "sort array with user-supplied inline functor");
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
quicksort( table, table + tablesize, less<double>() );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "quicksort template array with standard functor" );
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
sort( table, table + tablesize, less<double>() );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "sort array with standard functor");
start_timer();
for (i = 0; i < iterations; ++i)
{
copy(master_table, master_table+tablesize, table);
quicksort( table, table + tablesize );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "quicksort template array with native < operator" );
start_timer();
for (i = 0; i < iterations; ++i)
{
copy( master_table, master_table+tablesize, table );
sort( table, table + tablesize );
verify_sorted( table, table + tablesize );
}
record_result( timer(), "sort array with native < operator");
summarize("Function Objects", tablesize, iterations, kDontShowGMeans, kDontShowPenalty );
delete[] table;
delete[] master_table;
return 0;
}