Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in bit-manipulation

Bitwise operations in PHP?

php bit-manipulation

Why in Java (high + low) / 2 is wrong but (high + low) >>> 1 is not?

How to set/unset a bit at specific position of a long?

Optimized low-accuracy approximation to `rootn(x, n)`

De Bruijn-like sequence for `2^n - 1`: how is it constructed?

Is unsetting a single bit in flags safe with Python variable-length integers?

python bit-manipulation

Bitshift and integer promotion?

What is the purpose of the unsigned right shift operator ">>>" in Java?

A + B without arithmetic operators, Python vs C++

Need help understanding "getbits()" method in Chapter 2 of K&R C

Set a specific bit in an int

c# bit-manipulation

Using Bitwise operators on flags

why is 1>>32 == 1?

java bit-manipulation

How to convert an int to a little endian byte array?

c# bit-manipulation

Convert Byte Array to Bit Array?

c# bit-manipulation

"Isolate" specific Row/Column/Diagonal from a 64-bit number

f(int x) { return x == 0 ? 0 : 1; } in Java without conditionals

java bit-manipulation

Checking whether a number is positive or negative using bitwise operators

Is & faster than % when checking for odd numbers?

Should I bit-shift to divide by 2 in Java? [duplicate]