Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Library: Sonstiges (https://www.delphipraxis.net/45-library-sonstiges/)
-   -   IP's aus einer StringList sortieren (https://www.delphipraxis.net/36569-ips-aus-einer-stringlist-sortieren.html)

CReber 21. Dez 2004 21:51


IP's aus einer StringList sortieren
 
BubbleSort sortiert und CountString und zählt die einzelnen IP Elemente zusammen.

Bsp : 192 + 168 + 0 + 1 < 192 + 168 + 0 + 15

Delphi-Quellcode:
function CountString (Str:String) : Byte;
var
  i: Integer;
begin
  Result := 0;
  i := 1;
  while Length(Str) > 0 do
    if Str[i] = '.' then
    begin
      Result := StrToInt(Copy(Str, 1, i - 1)) + Result;
      Str   := Copy(Str, i + 1, Length(Str) - i);
      i     := 1;
    end else
    begin
      Inc(i);
      if Length(Str) < i then
      begin
        Result := Result + StrToInt(Str);
        Break;
      end;
    end;
end;

procedure BubbleSort(var Items: TStringList);
var
  done: Boolean;
  i, n, i0, i1 : integer;
  Dummy: string;
begin
  n := Items.Count;
  Done := False;
  while not (done) do
  begin
    done := true;
    for i := 0 to n - 2 do
    begin
      i0 := CountString(Items[i]);
      i1 := CountString(Items[i+1]);
      if (i1 < i0) then
      begin
        Dummy := Items[i+1];
        Items[i+1] := Items[i];
        Items[i] := Dummy;
        Done := False
      end;
    end;
  end;
end;
[edit=Matze]Code formatiert. Mfg, Matze[/edit]


Alle Zeitangaben in WEZ +1. Es ist jetzt 17:28 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz