home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / g-busorg.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  57 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                   G N A T . B U B B L E _ S O R T _ G                    --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                              --
  10. --                                                                          --
  11. --               Copyright (c) 1995 NYU, All Rights Reserved                --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  This package provides a generic bubble sort routine that can be used with
  27. --  different types of data. See also GNAT.Heap_Sort_A, a version that works
  28. --  with subprogram parameters, allowing code sharing. The generic version
  29. --  is slightly more efficient but does not allow code sharing.
  30.  
  31. generic
  32.    --  The data to be sorted is assumed to be indexed by integer values from
  33.    --  1 to N, where N is the number of items to be sorted. In addition, the
  34.    --  index value zero is used for a temporary location used during the sort.
  35.  
  36.    with procedure Move (From : Natural; To : Natural);
  37.    --  A procedure that moves the data item with index From to the data item
  38.    --  with Index To. An index value of zero is used for moves from and to a
  39.    --  single temporary location used by the sort.
  40.  
  41.    with function Lt (Op1, Op2 : Natural) return Boolean;
  42.    --  A function that compares two items and returns True if the item with
  43.    --  index Op1 is less than the item with Index Op2, and False if the Op2
  44.    --  item is greater than or equal to the Op1 item.
  45.  
  46. package GNAT.Bubble_Sort_G is
  47. pragma Preelaborate (Bubble_Sort_G);
  48.  
  49.    procedure Sort (N : Positive);
  50.    --  This procedures sorts items indexed from 1 to N into ascending order
  51.    --  making calls to Lt to do required comparisons, and Move to move items
  52.    --  around. Note that, as described above, both Move and Lt use a single
  53.    --  temporary location with index value zero. This sort is not stable,
  54.    --  i.e. the order of equal elements in the input is not preserved.
  55.  
  56. end GNAT.Bubble_Sort_G;
  57.