home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / mf_qsort.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  9KB  |  259 lines

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