Added methods for counting the number of bits set in integers
git-svn-id: file:///srv/devel/repo-conversion/nusu@210 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
22cea75a7a
commit
645148a751
|
@ -97,6 +97,31 @@ namespace Nuclex.Support {
|
|||
Assert.AreEqual(1073741824, IntegerHelper.NextPowerOf2(1073741824));
|
||||
}
|
||||
|
||||
/// <summary>Verifies that the bit counting method for integers works</summary>
|
||||
[Test]
|
||||
public void TestCountBitsInInteger() {
|
||||
Assert.AreEqual(0, IntegerHelper.CountBits(0));
|
||||
Assert.AreEqual(32, IntegerHelper.CountBits(-1));
|
||||
Assert.AreEqual(16, IntegerHelper.CountBits(0x55555555));
|
||||
Assert.AreEqual(16, IntegerHelper.CountBits(0xAAAAAAAA));
|
||||
|
||||
for (int bitIndex = 0; bitIndex < 32; ++bitIndex) {
|
||||
Assert.AreEqual(1, IntegerHelper.CountBits(1 << bitIndex));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Verifies that the bit counting method for long integers works</summary>
|
||||
[Test]
|
||||
public void TestCountBitsInLongInteger() {
|
||||
Assert.AreEqual(0, IntegerHelper.CountBits(0L));
|
||||
Assert.AreEqual(64, IntegerHelper.CountBits(-1L));
|
||||
Assert.AreEqual(32, IntegerHelper.CountBits(0x5555555555555555));
|
||||
Assert.AreEqual(32, IntegerHelper.CountBits(0xAAAAAAAAAAAAAAAA));
|
||||
|
||||
for (int bitIndex = 0; bitIndex < 64; ++bitIndex) {
|
||||
Assert.AreEqual(1, IntegerHelper.CountBits(1 << bitIndex));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -77,6 +77,52 @@ namespace Nuclex.Support {
|
|||
return value;
|
||||
}
|
||||
|
||||
/// <summary>Returns the number of bits set in an </summary>
|
||||
/// <param name="value">Value whose bits will be counted</param>
|
||||
/// <returns>The number of bits set in the integer</returns>
|
||||
public static int CountBits(this int value) {
|
||||
return CountBits((uint)value);
|
||||
}
|
||||
|
||||
/// <summary>Returns the number of bits set in an unsigned integer</summary>
|
||||
/// <param name="value">Value whose bits will be counted</param>
|
||||
/// <returns>The number of bits set in the unsigned integer</returns>
|
||||
/// <remarks>
|
||||
/// Based on a trick revealed here:
|
||||
/// http://stackoverflow.com/questions/109023
|
||||
/// </remarks>
|
||||
public static int CountBits(this uint value) {
|
||||
value = value - ((value >> 1) & 0x55555555);
|
||||
value = (value & 0x33333333) + ((value >> 2) & 0x33333333);
|
||||
|
||||
return (int)unchecked(
|
||||
((value + (value >> 4) & 0xF0F0F0F) * 0x1010101) >> 24
|
||||
);
|
||||
}
|
||||
|
||||
/// <summary>Returns the number of bits set in a long integer</summary>
|
||||
/// <param name="value">Value whose bits will be counted</param>
|
||||
/// <returns>The number of bits set in the long integer</returns>
|
||||
public static int CountBits(this long value) {
|
||||
return CountBits((ulong)value);
|
||||
}
|
||||
|
||||
/// <summary>Returns the number of bits set in an unsigned long integer</summary>
|
||||
/// <param name="value">Value whose bits will be counted</param>
|
||||
/// <returns>The number of bits set in the unsigned long integer</returns>
|
||||
/// <remarks>
|
||||
/// Based on a trick revealed here:
|
||||
/// http://stackoverflow.com/questions/2709430
|
||||
/// </remarks>
|
||||
public static int CountBits(this ulong value) {
|
||||
value = value - ((value >> 1) & 0x5555555555555555UL);
|
||||
value = (value & 0x3333333333333333UL) + ((value >> 2) & 0x3333333333333333UL);
|
||||
|
||||
return (int)unchecked(
|
||||
(((value + (value >> 4)) & 0xF0F0F0F0F0F0F0FUL) * 0x101010101010101UL) >> 56
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
} // namespace Nuclex.Support
|
||||
|
|
Loading…
Reference in New Issue
Block a user