Registriert seit: 28. Feb 2011
Ort: Mannheim
1.384 Beiträge
Delphi 10.4 Sydney
|
AW: Sortieralgorithmen
19. Aug 2011, 15:30
Dann tust du es an der falschen stelle..
Delphi-Quellcode:
I:= 0;
while I <= Count-1 do
begin
if Soll Zeile I Löschen then
begin
Lösche Zeile I
Dec(I);
end;
Inc(I);
end;
-> SetLength ( Array, Memo.Lines.count);
array [0..count-1] = Memo.Lines[0..count-1]
sort array
Memo.Lines.BeginUpdate
Memo.Lines[0..count-1] = array [0..count-1]
Memo.Lines.EndUpdate
|