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_radix.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  57 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. /*
  19.   Radixsort for pointers to fixed length strings.
  20.   A very quick sort for not to long (< 20 char) strings.
  21.   Neads a extra buffers of number_of_elements pointers but is
  22.   2-3 times faster than quicksort
  23. */
  24.  
  25. #include "mysys_priv.h"
  26. #include <m_string.h>
  27.  
  28.     /* Radixsort */
  29.  
  30. void radixsort_for_str_ptr(uchar **base, uint number_of_elements, size_s size_of_element, uchar **buffer)
  31. {
  32.   uchar **end,**ptr,**buffer_ptr;
  33.   uint32 *count_ptr,*count_end,count[256];
  34.   int pass;
  35.  
  36.   end=base+number_of_elements; count_end=count+256;
  37.   for (pass=(int) size_of_element-1 ; pass >= 0 ; pass--)
  38.   {
  39.     bzero((gptr) count,sizeof(uint32)*256);
  40.     for (ptr= base ; ptr < end ; ptr++)
  41.       count[ptr[0][pass]]++;
  42.     if (count[0] == number_of_elements)
  43.       goto next;
  44.     for (count_ptr=count+1 ; count_ptr < count_end ; count_ptr++)
  45.     {
  46.       if (*count_ptr == number_of_elements)
  47.     goto next;
  48.       (*count_ptr)+= *(count_ptr-1);
  49.     }
  50.     for (ptr= end ; ptr-- != base ;)
  51.       buffer[--count[ptr[0][pass]]]= *ptr;
  52.     for (ptr=base, buffer_ptr=buffer ; ptr < end ;)
  53.       (*ptr++) = *buffer_ptr++;
  54.   next:;
  55.   }
  56. }
  57.