![]() |
Elemente in Mengen zählen
Hier wird gezeigt, wie man die Anzahl der Elemente in einer Menge (set of) zählt:
Delphi-Quellcode:
Beispiel:
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;
Delphi-Quellcode:
Die Arbeitsweise der Funktion CountBitsSet ist in
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; ![]() |
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