"Christmas - the time to fix the computers of your loved ones" « Lord Wyrm

insert sort?

Bestox 20.03.2004 - 17:58 572 2
Posts

Bestox

Little Overclocker
Registered: Jul 2001
Location: W / NOE
Posts: 89
is dasn insert sort? (pascal; zahlen ist ein array von 1 bis 20)

procedure sortierinsert(var zahlen:tzahlen);
var i,j,index:integer;
begin
index:=0;
for i:=1 to 20 do
begin
index:=zahlen[i];
j:=i;
while ((j>1) and (zahlen[j-1]>index)) do
begin
zahlen[j]:=zahlen[j-1];
j:=j-1;
end;
zahlen[j]:=index;
end;

Ringding

Pilot
Avatar
Registered: Jan 2002
Location: Perchtoldsdorf/W..
Posts: 4300
Ja, wie es im Buche steht.

Bestox

Little Overclocker
Registered: Jul 2001
Location: W / NOE
Posts: 89
herzlichen dank
Kontakt | Unser Forum | Über overclockers.at | Impressum | Datenschutz