home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / PSION / UTILS / DBSORT / DBSORT.TXT < prev   
Encoding:
Text File  |  1993-11-15  |  928 b   |  24 lines

  1. DBSORT 1.0 - 15 November 1993 - Copyright 1993 Michael Geary
  2.  
  3. DBSORT is a fast database sort program for the Series 3a.  (Sorry, it won't
  4. work on the Series 3.)  OPL source code is included.
  5.  
  6. DBSORT sorts my 400-entry address book in 25 seconds.  It could be made even
  7. a little faster by combining the qsort and strcmp functions, but this would
  8. make the code less readable.
  9.  
  10. It sorts the database on the first two fields using a QuickSort algorithm,
  11. and the sort is case independent.
  12.  
  13. This version will sort a database of up to 2000 entries, as long as the text
  14. of the first two fields of all the records will fit in memory.  You can
  15. increase this limit by changing the definitions of r%, s%, and maxrec% at
  16. the beginning of DBSORT.OPL.
  17.  
  18. DBSORT preserves the database records in their original format.  It does not
  19. add any extra fields to the records.
  20.  
  21. Michael Geary
  22. 76146.42@compuserve.com
  23. geary@bix.com
  24.