Bit Hacks Flashcards
x AND 0’s
0
x AND 1’s
x
x AND x
x
x OR 0’s
x
x OR 1’s
1’s
x OR x
x
x XOR 0’s
x
x XOR 1’s
~x
x XOR x
0’s
checking if the kth bit is set
n AND (1
setting the kth bit
n OR (1
clearing the kth bit
n AND ~(1
toggling kth bit
n XOR (1
toggling rightmost one bit
n AND n-1
isolating rightmost one bit
n AND -n
isolating rightmost zero bit
~n AND n+1
checking where number is a power of 2
(n AND n-1) == 0
multiplying by a power of 2 (2^k)
n
dividing by a power of 2 (2^k)
n»_space; K
finding the modulo of a given number
n AND 0x[hex value]
creating mask for trailing zeros
(n AND -n) - 1
reversing a binary number
unsigned int n, nReverse = n; int s = sizeof(n); for( ; n; n >>=1) nReverse |= n AND 1 s--; nReverse
swap all odd and even bits
find even bits in N (evenN) = n AND 0xAA
find odd bits in N (oddN) = n AND 0x55
evenN»_space;= 1
oddN
check if 1 ints are equal WITHOUT comparison operators
!( i ^ j )
detect if 2 ints have opposite signs
bool f = ((x^y)
compute min of 2 ints, x and y
r = y XOR ((x XOR y) AND -(x
compute max of 2 ints, x and y
r = x XOR ((x XOR y) AND -(x
counting bits set - naive way
unsigned int v; // count the number of bits set in v
unsigned int c; // c accumulates the total bits set in v
for (c = 0; v; v»_space;= 1){
c += v AND 1;
}
swapping values with XOR
define SWAP(a, b) (((a) ^= (b)), ((b) ^= (a)), ((a) ^= (b)))