Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Library: Sonstiges (https://www.delphipraxis.net/45-library-sonstiges/)
-   -   Delphi Elemente in Mengen zählen (https://www.delphipraxis.net/80914-elemente-mengen-zaehlen.html)

shmia 17. Nov 2006 13:02


Elemente in Mengen zählen
 
Hier wird gezeigt, wie man die Anzahl der Elemente in einer Menge (set of) zählt:
Delphi-Quellcode:
function CountBitsSet(P: Pointer; Count: Cardinal): Cardinal;
const
  lu : packed array[0..15] of Byte = (0,1,1,2,1,2,2,3,1,2,2,3,2,3,3,4);
var
  b: Byte;
begin
  Result := 0;
  while Count > 0 do
  begin
    b := PByte(P)^;
    // lower Nibble
    Inc(Result, lu[b and $0F]);
    // upper Nibble
    Inc(Result, lu[b shr 4]);

    Dec(Count);
    Inc(PByte(P));
  end;
end;
Beispiel:

Delphi-Quellcode:
type
  TMonat = (Jan, Feb, Mar, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez);
  TMonate = set of TMonat;
var
  monate : TMonate;  // Die Menge
  anzahl : Cardinal;
begin
  monate := [Jan, Dez, Aug]; // mit 3 Elementen
  anzahl := CountBitsSet(@monate, sizeof(monate)); // anzahl = 3
end;
Die Arbeitsweise der Funktion CountBitsSet ist in Datenbits effektiv zählen genauer beschrieben.


Alle Zeitangaben in WEZ +1. Es ist jetzt 10:19 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