Tagged Questions

Bitwise refers to a bitwise operation which operates on one or more bit patterns or binary numerals at the level of their individual bits.

learn more… | top users | synonyms

89
votes
20answers
60k views

Best algorithm to count the number of set bits in a 32-bit integer?

8 bits representing the number 7 look like this: 00000111 Three bits are set. What is the best algorithm to determine the number of set bits in a 32-bit integer?
53
votes
8answers
34k views

Most common C# bitwise operations

For the life of me, I can't remember how to set, delete, toggle or test a bit in a bitfield. Either I'm unsure or I mix them up because I rarely need these. So a "bit-cheat-sheet" would be nice to ...
35
votes
3answers
2k views

How does this work? Weird Towers of Hanoi Solution

I was lost on the internet when I discovered this unusual, iterative solution to the towers of Hanoi: for (int x=1; x < (1 << nDisks); x++) { FromPole = (x&x-1)%3; ...
20
votes
2answers
633 views

Why is ( Infinity | 0 ) === 0?

I'm fiddling around with bitwise operators in JavaScript and there is one thing I find remarkable. The bitwise or operator returns 1 as output bit if one of the two input bits are 1. So doing x | 0 ...
20
votes
4answers
3k views

bitwise operators and “Endianness”

Does Endianness matter at all with the bitwise operations. Either logical or shifting? I'm working on homework with regard to bitwise operators and I can not make heads or tails on it and I think ...
19
votes
5answers
252 views

Optimization levels in gcc changing c program behaviour

I'm seeing behaviour I don't expect when compiling this code with different optimization levels in gcc. The function test should fill a 64 bit unsigned integer with ones, shift them shift_size bits ...
18
votes
13answers
11k views

How to add two numbers without using ++ or + or another arithmetic operator

How do I add two numbers without using ++ or + or any other arithmetic operator? It was a question asked a long time ago in some campus interview. Anyway, today someone asked a question regarding ...
16
votes
2answers
776 views

Bitwise Interval Arithmetic

I've recently read an interesting thread on the D newsgroup, which basically asks, Given two (signed) integers a ∈ [amin, amax], b ∈ [bmin, bmax], what is the tightest interval of a | ...
15
votes
13answers
1k views

How do you randomly zero a bit in an integer?

Updated with newer answer and better test Let's say I have the number 382 which is 101111110. How could I randomly turn a bit which is not 0 to 0? The why; Since people ask me why, I simply need ...
14
votes
11answers
731 views

Getting the number of trailing 1 bits

Are there any efficient bitwise operations I can do to get the number of set bits that an integer ends with? For example 1110 = 10112 would be two trailing 1 bits. 810 = 10002 would be 0 trailing 1 ...
14
votes
6answers
8k views

What is “2's Complement”?

I'm in a computer systems course and have been struggling, in part, with Two's Complement. I want to understand it but everything I read hasn't brought the picture together for me. I've read the ...
13
votes
3answers
759 views

bitwise operations in PHP?

I understand that bitwise operations are necessary for much low-level programming, such as writing device drivers, low-level graphics, communications protocol packet assembly and decoding. I am doing ...
13
votes
11answers
1k views

2.9999999999999999 >> .5?

I heard that you could right-shift a number by .5 instead of using Math.floor(). I decided to check its limits to make sure that it was a suitable replacement, so I checked the following values and ...
11
votes
7answers
2k views

Finding the exponent of n = 2**x using bitwise operations [logarithm in base 2 of n]

Is there a straightforward way to extracting the exponent from a power of 2 using bitwise operations only? EDIT: Although the question was originally about bitwise operations, the thread is a good ...
10
votes
3answers
276 views

Strange behavior of bitwise NOT (~)

How do I explain the following behavior? #include<iostream> using namespace std; int main(){ unsigned char a = 8; cerr << "a: " << (int)a << '\n'; ...
10
votes
8answers
247 views

How to represent 4 boolean possibilities in a single value

I want to store 4 boolean possibilities in a single value. For e.g., I want a single value that tells whether a person is: IsSingle IsGraduate IsMale IsLookingForPartner So is it good to store ...
10
votes
8answers
617 views

make an integer even

Sometimes I need to be sure that some integer is even. As such I could use the following code: int number = /* magic initialization here */; // make sure the number is even if ( number % 2 != 0 ) { ...
10
votes
7answers
4k views

Good tutorials on Bitwise operations in Java

Can anyone please point me to good online tutorials on Bitwise Operations (preferably in Java)? Before anyone write LMGTFY, I've already Googled it but couldn't find one with good examples. Java's own ...
10
votes
9answers
2k views

Branchless code that maps zero, negative, and positive to 0, 1, 2

Write a branchless function that returns 0, 1, or 2 if the difference between two signed integers is zero, negative, or positive. Here's a version with branching: int Compare(int x, int y) { int ...
9
votes
0answers
148 views

C's heritage: bitwise operators vs equality operators precedence [closed]

I've stumbled in a JavaScript situation where bitwise operators were used. Logically, a bitwise operator should have a higher precedence than an equality operator, e.g. if val & 10 == 10 ...
9
votes
3answers
142 views

Is it possible to rewrite modulo (2^n - 1) using bitwise and restricted operators

For unsigned int x, is it possible to calculate x % 255 (or 2^n - 1 in general) using only the following operators (plus no loop, branch or function call)? !, ~, &, ^, |, +, <<, >>.
9
votes
3answers
232 views

Fastest way to loop every number with conditions

Given a 64 bit integer, where the last 52 bits to be evaluated and the leading 12 bits are to be ignored, what is the fastest way to loop every single combination of 7 bits on and all other bits off? ...
9
votes
6answers
1k views

Do bitwise operators (other than shifts) make any mathematical sense in base-10?

According to wiki shifts can be used to calculate powers of 2: A left arithmetic shift by n is equivalent to multiplying by 2^n (provided the value does not overflow), while a right ...
9
votes
6answers
507 views

Why do a lot of languages lack a logical XOR operator?

Off the top of my head, I cannot think of a single language I've used that had a logical exclusive or operator, but all have logical and bitwise and and or operators. Looking around, the only reason ...
9
votes
5answers
868 views

Algorithm for copying N bits at arbitrary position from one int to another

An interesting problem I've been pondering the past few days is how to copy one integer's bits into another integer at a given position in the destination integer. So, for example, given the ...
9
votes
6answers
9k views

How to get the Nth digit of an integer with bit-wise operations?

Example. 123456, and we want the third from the right ('4') out. The idea in practise is to access each digit seperately (ie. 6 5 4 3 2 1). C/C++/C# preferred.
9
votes
3answers
1k views

How do I flip a bit in SQL Server?

I'm trying to perform a bitwise NOT in SQL Server. I'd like to do something like this: update foo set Sync = NOT @IsNew Note: I started writing this and found out the answer to my own question ...
8
votes
2answers
127 views

32 bit unsigned javascript bitwise operation is 1 short

Why does ((255<<24)|(255<<16)|(255<<8)|255)>>>0 == 4294967295 when Math.pow(256,4) == 4294967296 Notice that the bitwise operation is 1 short. Why is this?!
8
votes
3answers
186 views

Bitwise “~” Operator in C#

Elementary question asked by someone who's weak on binary numbers. [TestMethod] public void RunNotTest() { // 10101100 = 128 + 32 + 8 + 4 = 172 byte b = 172; // ...
8
votes
1answer
495 views

Bitwise signed division algorithm in C

Well, to be honest this is actually my homework where I have to implement an algorithm which has to be able to divide two values without taking the absolute values of them to do the division. It also ...
8
votes
4answers
1k views

Understanding the bitwise AND Operator

I have been reading about bit operators in Objective-C in Kochan's book, "Programming in Objective-C". I am VERY confused about this part, although I have really understood most everything else ...
8
votes
6answers
4k views

Why should I use bitwise/bitmask in PHP?

I am working on a user-role / permission system in PHP for a script. Below is a code using a bitmask method for permissions that I found on phpbuilder.com. Below that part is a much simpler version ...
8
votes
6answers
2k views

Using Bitwise operators on flags

I have four flags Current = 0x1 Past = 0x2 Future = 0x4 All = 0x7 Say I receive the two flags Past and Future (setFlags(PAST | FUTURE)). How can I tell if Past is in it? Likewise how can I ...
8
votes
8answers
10k views

Rounding off to nearest power of 2

I want to write a function that returns the nearest upper power of 2 number. For example if my input is 789, the output should be 1024. Is there any way of achieving this without using any loops but ...
7
votes
2answers
128 views

Confusion with C ~ operator (bitwise Not) and comparing char variables

Using "ordinary C", I wish to compare two 8 bit bytes to determine if the second is the bitwise complement of the first. For example if Byte1 is binary 00001111 (15 in decimal) I want to test whether ...
7
votes
5answers
159 views

Perl bitwise AND giving me funky results

I am writing a little perl script to compare two IP addresses using perls bitwise AND operator. but I am getting some really funky results. I'm new to perl so maybe someone can give me a few pointers. ...
7
votes
5answers
507 views

Improve this PHP Bitfield Class for settings/permissions?

I have been trying to figure out the best way to use Bitmask or Bitfields in PHP for a long time now for different areas of my app for different user settings and permissions. The farthest I have ...
7
votes
2answers
320 views

What's the most efficient bit vector compression method for my use case?

I'm working on a project in computational biology and I need to store an index of locuses that differ between many sequences. For now, I'm using a B+Tree for that purpose, but I guess using a bitmap ...
7
votes
2answers
535 views

Some questions about bitwise operators

I read about bitwise operators today and they seem rather handy to me. I also noticed Apple uses them too, for example with UIViewAutoresizing. In my app I need to keep track of the seven days of the ...
7
votes
4answers
1k views

Extract bit sequences of arbitrary length from byte[] array efficiently

I'm looking for the most efficient way of extracting (unsigned) bit sequences of arbitrary length (0 <= length <= 16) at arbitrary position. The skeleton class show how my current implementation ...
7
votes
7answers
824 views

Is a logical right shift by a power of 2 faster?

I would like to know if performing a logical right shift is faster when shifting by a power of 2. I am using C++. For example, is myUnsigned >> 4 any faster than myUnsigned >> 3 I ...
7
votes
4answers
296 views

How to do bitwise AND in javascript on variables that are longer than 32 bit?

I have 2 numbers in javascript that I want to bit and. They both are 33bit long in C#: ((4294967296 & 4294967296 )==0) is false but in javascript: ((4294967296 & 4294967296 )==0) is ...
7
votes
5answers
5k views

How can i multiply and divide with only using bit shifting and adding?

How can i multiply and divide with only using bit shifting and adding?
7
votes
4answers
772 views

Zig Zag Decoding

In the google protocol buffers encoding overview, they introduce something called "Zig Zag Encoding", this takes signed numbers, which have a small magnitude, and creates a series of unsigned numbers ...
7
votes
8answers
604 views

Getting 32 bit words out of 64-bit values in C/C++ and not worrying about endianness

It's my understanding that in C/C++ bitwise operators are supposed to be endian independent and behave the way you expect. I want to make sure that I'm truly getting the most significant and least ...
7
votes
6answers
4k views

Unsigned Integer in Javascript

I'm working on a page that processes IP address information, but it's choking on the fact that integers are signed. I am using bitwise operators to speed it up, but the 64th bit (signed/unsigned flag) ...
7
votes
9answers
677 views

Why do we always declare constants to be powers of 2?

Most of the constants I see in others code are powers of 2, i.e. #define SIZE 256 or public static final int SIZE = 2048; Is there any particular reason why we do that instead of i.e. #define ...
7
votes
7answers
6k views

Is & faster than % when checking for odd numbers?

To check for odd and even integer, is the lowest bit checking more efficient than using the modulo? >>> def isodd(num): return num & 1 and True or False >>> isodd(10) ...
7
votes
8answers
6k views

Understanding PHP's & operator

I often use ($var & 1) in my code, which returns true if $var is an odd number and false if it's an even number. Just dawned on me that I have no idea what "&" actually does. Anyone care to ...
7
votes
8answers
5k views

How do you use bitwise flags in C++?

As per this website, I wish to represent a Maze with a 2 dimensional array of 16 bit integers. Each 16 bit integer needs to hold the following information: Here's one way to do it (this is by no ...

1 2 3 4 5 13