|  | Home | Libraries | People | FAQ | More | 
            integer_sortinteger_sort
Some performance plots of runtime vs. n and log2(range) are provided below:
See rightshiftsample.cpp for a working example of using rightshift, using a user-defined functor:
struct rightshift { inline int operator()(DATA_TYPE x, unsigned offset) { return x >> offset; } };
Other examples:
Sort structs using an integer key.