Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
pascal/ITG/QUICKSOR.PAS
2001-11-30 12:14:44 +01:00

24 lines
800 B
Plaintext

procedure quicksort(anfang,ende : integer; var f : feldtyp);
var links, rechts : integer;
h, vgl : elementtyp;
begin
links := anfang; rechts := ende; vgl := f[(links+rechts) div 2];
if links < rechts then
begin
repeat
while f[links]< vgl do inc(links);
while f[rechts]> vgl do dec(rechts);
if links <= rechts then
begin
h:=f[links];
f[links]:= f[rechts];
f[rechts]:=h;
inc(links); dec(rechts);
end;
until links > rechts;
quicksort(anfang,rechts,f);
quicksort(links,ende,f);
end;
end;