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
|
// This code is part of the Problem Based Benchmark Suite (PBBS)
// Copyright (c) 2011 Guy Blelloch and the PBBS team
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights (to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef _S_RADIX_INCLUDED
#define _S_RADIX_INCLUDED
#include <iostream>
#include <algorithm>
#include <math.h>
#include "utils.h"
namespace intSort {
// Cannot be greater than 8 without changing definition of bIndexT
// from unsigned char to unsigned int (or unsigned short)
#define MAX_RADIX 8
#define BUCKETS (1 << MAX_RADIX)
// a type that must hold MAX_RADIX bits
typedef unsigned char bIndexT;
// input in A, output in B
template <class E, class F>
void radixStep(E* A, E* B, bIndexT *Tmp, int* counts,
int n, int m, F extract) {
for (int i = 0; i < m; i++) counts[i] = 0;
for (int j = 0; j < n; j++) {
int k = Tmp[j] = extract(A[j]);
counts[k]++;
}
int s = 0;
for (int i = 0; i < m; i++) {
s += counts[i];
counts[i] = s;
}
for (int j = n-1; j >= 0; j--) {
int x = --counts[Tmp[j]];
B[x] = A[j];
}
}
// a function to extract "bits" bits starting at bit location "offset"
template <class E, class F>
struct eBits {
F _f; int _mask; int _offset;
// ADAM: moved initialization of _f to the front to remove "x will be initialized after y" warning
eBits(int bits, int offset, F f): _f(f), _mask((1<<bits)-1),
_offset(offset) {}
int operator() (E p) {return _mask&(_f(p)>>_offset);}
};
// Radix sort with low order bits first
template <class E, class F>
void iSort(E *A, int n, int m, F f) {
int bits = utils::log2Up(m);
// temporary space
E* B = (E*) malloc(sizeof(E)*n);
bIndexT* Tmp = (bIndexT*) malloc(sizeof(bIndexT)*n);
int* counts = (int*) malloc(sizeof(int)*BUCKETS);
int rounds = 1+(bits-1)/MAX_RADIX;
int rbits = 1+(bits-1)/rounds;
int bitOffset = 0;
bool flipped = 0;
while (bitOffset < bits) {
if (bitOffset+rbits > bits) rbits = bits-bitOffset;
if (flipped)
radixStep(B, A, Tmp, counts, n, 1 << rbits,
eBits<E,F>(rbits,bitOffset,f));
else
radixStep(A, B, Tmp, counts, n, 1 << rbits,
eBits<E,F>(rbits,bitOffset,f));
bitOffset += rbits;
flipped = !flipped;
}
if (flipped)
for (int i=0; i < n; i++)
A[i] = B[i];
free(B); free(Tmp); free(counts);
}
}
// ADAM: added inline to remove "defined but not used" warning
static inline void integerSort(uint32_t *A, int n) {
uint32_t maxV = 0;
for (int i=0; i<n; i++) maxV = std::max(maxV,A[i]);
intSort::iSort(A, n, maxV+1, utils::identityF<uint32_t>());
}
template <class T>
void integerSort(std::pair<uint32_t,T> *A, int n) {
uint32_t maxV = 0;
for (int i=0; i<n; i++) maxV = std::max(maxV,A[i].first);
intSort::iSort(A, n, maxV, utils::firstF<uint32_t,T>());
}
#endif // _S_RADIX_INCLUDED
|