mf_qsort.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:9k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /* Plug-compatible replacement for UNIX qsort.
  18.    Copyright (C) 1989 Free Software Foundation, Inc.
  19.    Written by Douglas C. Schmidt (schmidt@ics.uci.edu)
  20.    Optimized and modyfied for mysys by monty.
  21. This file is part of GNU CC.
  22. GNU QSORT is free software; you can redistribute it and/or modify
  23. it under the terms of the GNU General Public License as published by
  24. the Free Software Foundation; either version 1, or (at your option)
  25. any later version.
  26. GNU QSORT is distributed in the hope that it will be useful,
  27. but WITHOUT ANY WARRANTY; without even the implied warranty of
  28. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  29. GNU General Public License for more details.
  30. You should have received a copy of the GNU General Public License
  31. along with GNU QSORT; see the file COPYING.  If not, write to
  32. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  33. #include "mysys_priv.h"
  34. #if !defined(HAVE_purify) || defined(QSORT_EXTRA_CMP_ARGUMENT)
  35. /* Envoke the comparison function, returns either 0, < 0, or > 0. */
  36. #ifdef QSORT_EXTRA_CMP_ARGUMENT
  37. #define CMP(A,B) ((*cmp)(cmp_argument,(A),(B)))
  38. #else
  39. #define CMP(A,B) ((*cmp)((A),(B)))
  40. #endif
  41. /* Byte-wise swap two items of size SIZE. */
  42. #define SWAP(A,B,SIZE) do {int sz=(int)(SIZE); char *a = (A); char *b = (B); 
  43.     do { char _temp = *a;*a++ = *b;*b++ = _temp;} while (--sz);} while (0)
  44. /* Copy SIZE bytes from item B to item A. */
  45. #define COPY(A,B,SIZE) {int sz = (int) (SIZE); do { *(A)++ = *(B)++; } while (--sz); }
  46. /* This should be replaced by a standard ANSI macro. */
  47. #define BYTES_PER_WORD 8
  48. /* The next 4 #defines implement a very fast in-line stack abstraction. */
  49. #define STACK_SIZE (BYTES_PER_WORD * sizeof (long))
  50. #define PUSH(LOW,HIGH) do {top->lo = LOW;top++->hi = HIGH;} while (0)
  51. #define POP(LOW,HIGH)  do {LOW = (--top)->lo;HIGH = top->hi;} while (0)
  52. #define STACK_NOT_EMPTY (stack < top)
  53. /* Discontinue quicksort algorithm when partition gets below this size.
  54.    This particular magic number was chosen to work best on a Sparc SLC. */
  55. #define MAX_THRESH 12
  56. /* Stack node declarations used to store unfulfilled partition obligations. */
  57. typedef struct
  58. {
  59.   char *lo;
  60.   char *hi;
  61. } stack_node;
  62. /* Order size using quicksort. This implementation incorporates
  63.    four optimizations discussed in Sedgewick:
  64.    1. Non-recursive, using an explicit stack of pointer that store the
  65.       next array partition to sort.  To save time, this maximum amount
  66.       of space required to store an array of MAX_INT is allocated on the
  67.       stack.  Assuming a 32-bit integer, this needs only 32 *
  68.       sizeof (stack_node) == 136 bits. Pretty cheap, actually.
  69.    2. Chose the pivot element using a median-of-three decision tree.
  70.       This reduces the probability of selecting a bad pivot value and
  71.       eliminates certain extraneous comparisons.
  72.    3. Only quicksorts TOTAL_ELEMS / MAX_THRESH partitions, leaving
  73.       insertion sort to order the MAX_THRESH items within each partition.
  74.       This is a big win, since insertion sort is faster for small, mostly
  75.       sorted array segements.
  76.    4. The larger of the two sub-partitions is always pushed onto the
  77.       stack first, with the algorithm then concentrating on the
  78.       smaller partition.  This *guarantees* no more than log (n)
  79.       stack size is needed (actually O(1) in this case)! */
  80. #if defined(QSORT_TYPE_IS_VOID)
  81. #define SORT_RETURN return
  82. #else
  83. #define SORT_RETURN return 0
  84. #endif
  85. #ifdef QSORT_EXTRA_CMP_ARGUMENT
  86. qsort_t qsort2(void *base_ptr, size_t total_elems, size_t size, qsort2_cmp cmp,
  87.        void *cmp_argument)
  88. #else
  89. qsort_t qsort(void *base_ptr, size_t total_elems, size_t size, qsort_cmp cmp)
  90. #endif
  91. {
  92.   /* Allocating SIZE bytes for a pivot buffer facilitates a better
  93.      algorithm below since we can do comparisons directly on the pivot.
  94.      */
  95.   int max_thresh   = (int) (MAX_THRESH * size);
  96.   if (total_elems <= 1)
  97.     SORT_RETURN; /* Crashes on MSDOS if continues */
  98.   if (total_elems > MAX_THRESH)
  99.   {
  100.     char       *lo = base_ptr;
  101.     char       *hi = lo + size * (total_elems - 1);
  102.     stack_node stack[STACK_SIZE]; /* Largest size needed for 32-bit int!!! */
  103.     stack_node *top = stack + 1;
  104.     char *pivot_buffer = (char *) my_alloca ((int) size);
  105.     while (STACK_NOT_EMPTY)
  106.     {
  107.       char *left_ptr;
  108.       char *right_ptr;
  109.       {
  110. char *pivot = pivot_buffer;
  111. {
  112.   /* Select median value from among LO, MID, and HI. Rearrange
  113.      LO and HI so the three values are sorted. This lowers the
  114.      probability of picking a pathological pivot value and
  115.      skips a comparison for both the LEFT_PTR and RIGHT_PTR. */
  116.   char *mid = lo + size * (((uint) (hi - lo) / (uint) size) >> 1);
  117.   if (CMP(hi,lo) < 0)
  118.     SWAP (hi, lo, size);
  119.   if (CMP (mid, lo) < 0)
  120.     SWAP (mid, lo, size);
  121.   else if (CMP (hi, mid) < 0)
  122.     SWAP (mid, hi, size);
  123.   COPY (pivot, mid, size);
  124.   pivot = pivot_buffer;
  125. }
  126. left_ptr  = lo + size;
  127. right_ptr = hi - size;
  128. /* Here's the famous ``collapse the walls'' section of quicksort.
  129.    Gotta like those tight inner loops! They are the main reason
  130.    that this algorithm runs much faster than others. */
  131. do
  132. {
  133.   while (CMP (left_ptr, pivot) < 0)
  134.     left_ptr += size;
  135.   while (CMP (pivot, right_ptr) < 0)
  136.     right_ptr -= size;
  137.   if (left_ptr < right_ptr)
  138.   {
  139.     SWAP (left_ptr, right_ptr, size);
  140.     left_ptr += size;
  141.     right_ptr -= size;
  142.   }
  143.   else if (left_ptr == right_ptr)
  144.   {
  145.     left_ptr += size;
  146.     right_ptr -= size;
  147.     break;
  148.   }
  149. }
  150. while (left_ptr <= right_ptr);
  151.       }
  152.       /* Set up pointers for next iteration.  First determine whether
  153.  left and right partitions are below the threshold size. If so,
  154.  ignore one or both.  Otherwise, push the larger partition's
  155.  bounds on the stack and continue sorting the smaller one. */
  156.       if ((right_ptr - lo) <= max_thresh)
  157.       {
  158. if ((hi - left_ptr) <= max_thresh) /* Ignore both small parts. */
  159.   POP (lo, hi);
  160. else /* Ignore small left part. */
  161.   lo = left_ptr;
  162.       }
  163.       else if ((hi - left_ptr) <= max_thresh) /* Ignore small right part. */
  164. hi = right_ptr;
  165.       else if ((right_ptr - lo) > (hi - left_ptr)) /* Push larger left part */
  166.       {
  167. PUSH (lo, right_ptr);
  168. lo = left_ptr;
  169.       }
  170.       else /* Push larger right part */
  171.       {
  172. PUSH (left_ptr, hi);
  173. hi = right_ptr;
  174.       }
  175.     }
  176.     my_afree(pivot_buffer);
  177.   }
  178.   /* Once the BASE_PTR array is partially sorted by quicksort the rest
  179.      is completely sorted using insertion sort, since this is efficient
  180.      for partitions below MAX_THRESH size. BASE_PTR points to the beginning
  181.      of the array to sort, and END_PTR points at the very last element in
  182.      the array (*not* one beyond it!). */
  183.   {
  184.     char *end_ptr = (char*) base_ptr + size * (total_elems - 1);
  185.     char *run_ptr;
  186.     char *tmp_ptr = (char*) base_ptr;
  187.     char *thresh  = min (end_ptr, (char*) base_ptr + max_thresh);
  188.     /* Find smallest element in first threshold and place it at the
  189.        array's beginning.  This is the smallest array element,
  190.        and the operation speeds up insertion sort's inner loop. */
  191.     for (run_ptr = tmp_ptr + size; run_ptr <= thresh; run_ptr += size)
  192.       if (CMP (run_ptr, tmp_ptr) < 0)
  193. tmp_ptr = run_ptr;
  194.     if (tmp_ptr != (char*) base_ptr)
  195.       SWAP (tmp_ptr, (char*) base_ptr, size);
  196.     /* Insertion sort, running from left-hand-side up to `right-hand-side.'
  197.        Pretty much straight out of the original GNU qsort routine. */
  198.     for (run_ptr = (char*) base_ptr + size;
  199.  (tmp_ptr = run_ptr += size) <= end_ptr; )
  200.     {
  201.       while (CMP (run_ptr, tmp_ptr -= size) < 0) ;
  202.       if ((tmp_ptr += size) != run_ptr)
  203.       {
  204. char *trav;
  205. for (trav = run_ptr + size; --trav >= run_ptr;)
  206. {
  207.   char c = *trav;
  208.   char *hi, *lo;
  209.   for (hi = lo = trav; (lo -= size) >= tmp_ptr; hi = lo)
  210.     *hi = *lo;
  211.   *hi = c;
  212. }
  213.       }
  214.     }
  215.   }
  216.   SORT_RETURN;
  217. }
  218. #endif /* HAVE_purify */