Jump to content

Sorting algorithms/Insertion sort: Difference between revisions

adding GAP
(→‎{{header|Perl 6}}: Added Perl 6 solution)
(adding GAP)
Line 526:
a(j+1:i) = cshift(a(j+1:i),-1)
END DO</lang>
=={{header|GAP}}==
<lang gap>InsertionSort := function(L)
local n, i, j, x;
n := Length(L);
for i in [ 2 .. n ] do
x := L[i];
j := i - 1;
while j >= 1 and L[j] > x do
L[j + 1] := L[j];
j := j - 1;
od;
L[j + 1] := x;
od;
end;
 
s := "BFKRIMPOQACNESWUTXDGLVZHYJ";
InsertionSort(s);
s;
# "ABCDEFGHIJKLMNOPQRSTUVWXYZ"</lang>
 
=={{header|Haskell}}==
506

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.