1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- ADA.CONTAINERS.GENERIC_CONSTRAINED_ARRAY_SORT --
9 -- Copyright (C) 2004-2008, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
29 -- This unit has originally being developed by Matthew J Heaney. --
30 ------------------------------------------------------------------------------
32 -- This algorithm was adapted from GNAT.Heap_Sort_G (see g-hesorg.ad[sb])
36 procedure Ada
.Containers
.Generic_Constrained_Array_Sort
37 (Container
: in out Array_Type
)
39 type T
is range System
.Min_Int
.. System
.Max_Int
;
41 function To_Index
(J
: T
) return Index_Type
;
42 pragma Inline
(To_Index
);
44 procedure Sift
(S
: T
);
46 A
: Array_Type
renames Container
;
52 function To_Index
(J
: T
) return Index_Type
is
53 K
: constant T
'Base := Index_Type
'Pos (A
'First) + J
- T
'(1);
55 return Index_Type'Val (K);
65 procedure Sift (S : T) is
76 Son_Index : Index_Type := To_Index (Son);
80 if A (Son_Index) < A (Index_Type'Succ (Son_Index)) then
82 Son_Index := Index_Type'Succ (Son_Index);
86 A (To_Index (C)) := A (Son_Index); -- Move (Son, C);
94 Father : constant T := C / 2;
96 if A (To_Index (Father)) < Temp then -- Lt (Father, 0)
97 A (To_Index (C)) := A (To_Index (Father)); -- Move (Father, C)
105 A (To_Index (C)) := Temp; -- Move (0, C);
108 -- Start of processing for Generic_Constrained_Array_Sort
111 for J in reverse 1 .. Max / 2 loop
112 Temp := Container (To_Index (J)); -- Move (J, 0);
117 Temp := A (To_Index (Max)); -- Move (Max, 0);
118 A (To_Index (Max)) := A (A'First); -- Move (1, Max);
123 end Ada.Containers.Generic_Constrained_Array_Sort;