00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #include <algorithm>
00039
00040 namespace Gecode { namespace Support {
00041
00043 template <class Type, class LessThan>
00044 forceinline void
00045 exchange(Type &a, Type &b, LessThan <) {
00046 if (lt(b,a)) std::swap(a,b);
00047 }
00048
00050 int const QuickSortCutoff = 20;
00051
00053 template <class Type>
00054 class QuickSortStack {
00055 private:
00057 static const int maxsize = 32;
00059 Type** tos;
00061 Type* stack[2*maxsize+1];
00062 public:
00064 QuickSortStack(void);
00066 bool empty(void) const;
00068 void push(Type* l, Type* r);
00070 void pop(Type*& l, Type*& r);
00071 };
00072
00073 template <class Type>
00074 forceinline
00075 QuickSortStack<Type>::QuickSortStack(void) : tos(&stack[0]) {
00076 *(tos++) = NULL;
00077 }
00078
00079 template <class Type>
00080 forceinline bool
00081 QuickSortStack<Type>::empty(void) const {
00082 return *(tos-1) == NULL;
00083 }
00084
00085 template <class Type>
00086 forceinline void
00087 QuickSortStack<Type>::push(Type* l, Type* r) {
00088 *(tos++) = l; *(tos++) = r;
00089 }
00090
00091 template <class Type>
00092 forceinline void
00093 QuickSortStack<Type>::pop(Type*& l, Type*& r) {
00094 r = *(--tos); l = *(--tos);
00095 }
00096
00098 template <class Type, class LessThan>
00099 forceinline void
00100 insertion(Type* l, Type* r, LessThan <) {
00101 for (Type* i = r; i > l; i--)
00102 exchange(*(i-1),*i,lt);
00103 for (Type* i = l+2; i <= r; i++) {
00104 Type* j = i;
00105 Type v = *i;
00106 while (lt(v,*(j-1))) {
00107 *j = *(j-1); j--;
00108 }
00109 *j = v;
00110 }
00111 }
00112
00114 template <class Type, class LessThan>
00115 forceinline Type*
00116 partition(Type* l, Type* r, LessThan <) {
00117 Type* i = l-1;
00118 Type* j = r;
00119 Type v = *r;
00120 while (true) {
00121 while (lt(*(++i),v)) {}
00122 while (lt(v,*(--j))) if (j == l) break;
00123 if (i >= j) break;
00124 std::swap(*i,*j);
00125 }
00126 std::swap(*i,*r);
00127 return i;
00128 }
00129
00131 template <class Type, class LessThan>
00132 inline void
00133 quicksort(Type* l, Type* r, LessThan <) {
00134 QuickSortStack<Type> s;
00135 while (true) {
00136 std::swap(*(l+((r-l) >> 1)),*(r-1));
00137 exchange(*l,*(r-1),lt);
00138 exchange(*l,*r,lt);
00139 exchange(*(r-1),*r,lt);
00140 Type* i = partition(l+1,r-1,lt);
00141 if (i-l > r-i) {
00142 if (r-i > QuickSortCutoff) {
00143 s.push(l,i-1); l=i+1; continue;
00144 }
00145 if (i-l > QuickSortCutoff) {
00146 r=i-1; continue;
00147 }
00148 } else {
00149 if (i-l > QuickSortCutoff) {
00150 s.push(i+1,r); r=i-1; continue;
00151 }
00152 if (r-i > QuickSortCutoff) {
00153 l=i+1; continue;
00154 }
00155 }
00156 if (s.empty())
00157 break;
00158 s.pop(l,r);
00159 }
00160 }
00161
00176 template <class Type, class LessThan>
00177 forceinline void
00178 insertion(Type* x, int n, LessThan <) {
00179 if (n < 2)
00180 return;
00181 insertion(x,x+n-1,lt);
00182 }
00183
00198 template <class Type, class LessThan>
00199 forceinline void
00200 quicksort(Type* x, int n, LessThan <) {
00201 if (n < 2)
00202 return;
00203 if (n > QuickSortCutoff)
00204 quicksort(x,x+n-1,lt);
00205 insertion(x,x+n-1,lt);
00206 }
00207
00208 }}
00209
00210