Tagged Questions

The manipulation of individual bits. Operators used may include bit-wise and/or (&/|), left-shift (<<), and right-shift (>>)

learn more… | top users | synonyms

226
votes
15answers
85k views

How do you set, clear and toggle a single bit in C?

How to set, clear and toggle a bit in C?
119
votes
7answers
28k views

Absolute Beginner's Guide to Bit Shifting?

I've been attempting to learn C in my spare time, and other languages (C#, Java, etc.) have the same concept (and often the same operators) ... What I'm wondering is, at a core level, what does ...
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?
63
votes
7answers
2k views

Why if (n & -n) == n then n is a power of 2?

Line 294 of java.util.Random source says if ((n & -n) == n) // i.e., n is a power of 2 // rest of the code Why this is?
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 ...
39
votes
9answers
21k views

Best Algorithm for Bit Reversal ( from MSB->LSB to LSB->MSB) in C

What is the best algorithm to achieve the following: 0010 0000 => 0000 0100 The conversion is from MSB->LSB to LSB->MSB. All bits must be reversed; that is, this is not endianness-swapping.
35
votes
14answers
11k views

Should I use #define, enum or const?

In a C++ project I'm working on I have a flag kind of value which can have 4 values. Those 4 flags can be combined. Flags describe the records in database and can be: new record deleted record ...
32
votes
43answers
4k views

Have you ever had to use bit shifting in real projects?

Have you ever had to use bit shifting in real programming projects? Most (if not all) high level languages have shift operators in them, but when would you actually need to use them?
30
votes
9answers
5k views

How does XOR variable swapping work?

Can someone explain to me how XOR swapping of two variables with no temp variable works? void xorSwap (int *x, int *y) { if (x != y) { *x ^= *y; *y ^= *x; *x ^= *y; } ...
28
votes
8answers
1k views

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

I want to implement f(int x) { return x == 0 ? 0 : 1; } in Java. In C, I'd just "return !!x;", but ! doesn't work like that in Java. Is there some way to do it without conditionals? Without something ...
26
votes
15answers
1k views

Optimize me! (C, performance) — followup to bit-twiddling question

Thanks to some very helpful stackOverflow users at Bit twiddling: which bit is set?, I have constructed my function (posted at the end of the question). Any suggestions -- even small suggestions -- ...
24
votes
15answers
6k views

What is the fastest/most efficient way to find the highest set bit (msb) in an integer in C?

If I have some integer n, and I want to know the position of the most significant bit (that is, if the least significant bit is on the right, I want to know the position of the furthest left bit that ...
22
votes
7answers
1k views

What is wrong with this bit-manipulation code from an interview question?

I was having a look over this page: http://www.devbistro.com/tech-interview-questions/Cplusplus.jsp, and didn't understand this question: What’s potentially wrong with the following code? long ...
22
votes
20answers
1k views

Beautiful examples of bit manipulation

What are the most elegant or useful examples of bit manipulation you have encountered or used? Examples in all languages are welcome.
22
votes
23answers
5k views

How can I perform multiplication without the '*' operator?

I was just going through some basic stuff as I am learning C. I came upon a question to multiply a number by 7 without using * operator. Basically its like this (x<<3)-x; Now I know ...
21
votes
9answers
2k views

Speed up bitstring/bit operations in Python?

I wrote a prime number generator using Sieve of Eratosthenes and Python 3.1. The code runs correctly and gracefully at 0.32 seconds on ideone.com to generate prime numbers up to 1,000,000. # from ...
18
votes
9answers
2k views

Why is abs(0x80000000) == 0x80000000?

I just started reading Hacker's Delight and it defines abs(-231) as -231. Why is that? I tried printf("%x", abs(0x80000000)) on a few different systems and I get back 0x80000000 on all of them.
18
votes
6answers
8k views

C# int to byte[]

If I need to convert an int to byte[] I could use Bitconvert.GetBytes(). But if I should follow this: An XDR signed integer is a 32-bit datum that encodes an integer in the range ...
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 ...
17
votes
1answer
390 views

OpenJDK's rehashing mechanism

Found this code on http://www.docjar.com/html/api/java/util/HashMap.java.html after searching for a HashMap implementation. 264 static int hash(int h) { 265 // This function ...
16
votes
2answers
310 views

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

I'm looking at the entry Find the log base 2 of an N-bit integer in O(lg(N)) operations with multiply and lookup from Bit Twiddling hacks. I can easily see how the second algorithm in that entry ...
15
votes
5answers
578 views

C/C++ Bit Twiddling

in the spirit of graphics.stanford.edu/~seander/bithacks.html I need to solve the following problem: int x; int pow2; // always a positive power of 2 int sgn; // always either 0 or 1 // ... // ... ...
15
votes
2answers
362 views

why is 1>>32 == 1?

I'm wondering if perhaps this is a JVM bug? java version "1.6.0_0" OpenJDK Runtime Environment (IcedTea6 1.4.1) (6b14-1.4.1-0ubuntu13) OpenJDK 64-Bit Server VM (build 14.0-b08, mixed mode) class Tmp ...
15
votes
6answers
9k views

C/C++: Force Bit Field Order and Alignment

I read that the order of bit fields within a struct is platform specific. What about if I use different compiler-specific packing options, will this guarantee data is stored in the proper order as ...
15
votes
6answers
5k views

Is there a way to perform a circular bit shift in C#?

I know that the following is true int i = 17; //binary 10001 int j = i << 1; //decimal 34, binary 100010 But, if you shift too far, the bits fall off the end. Where this happens is a matter ...
14
votes
14answers
1k views

Is there a more efficient way to get the length of a 32bit integer in bytes?

I'd like a shortcut for the following little function, where performance is very important (the function is called more than 10.000.000 times): inline int len(uint32 val) { if(val <= ...
14
votes
13answers
1k views

Bit twiddling: which bit is set?

I have a 64-bit unsigned integer with exactly 1 bit set. I'd like to assign a value to each of the possible 64 values (in this case, the odd primes, so 0x1 corresponds to 3, 0x2 corresponds to 5, ...
14
votes
16answers
3k views

Bitfield manipulation in C

The classic problem of testing and setting individual bits in an integer in C is perhaps one the most common intermediate-level programming skills. You set and test with simple bitmasks such as ...
14
votes
9answers
3k views

When to use Bitwise Operators during webdevelopment?

Although I grasp the concept of Bitwise Operators, I can't say that I have come across many use cases during the webdevelopment process at which I had to resort to using Bitwise Operators. Do you ...
13
votes
14answers
1k views

Fast divisibility tests (by 2,3,4,5,.., 16)?

What are the fastest divisibility tests? Say, given a little-endian architecture and a 32-bit signed integer: how to calculate very fast that a number is divisible by 2,3,4,5,... up to 16? WARNING: ...
13
votes
7answers
982 views

Useful bit-twiddling hacks? [closed]

There are lots of complicated bit-twiddling hacks around, see http://graphics.stanford.edu/~seander/bithacks.html. It's astonishing to read about them, but most of the time they're not worth the loss ...
12
votes
4answers
518 views

Why does (1 >> 0x80000000) == 1?

The number 1, right shifted by anything greater than 0, should be 0, correct? Yet I can type in this very simple program which prints 1. #include <stdio.h> int main() { int b = ...
12
votes
4answers
182 views

Using bitwise OR 0 to floor a number

A colleague of mine stumbled upon a method to floor float numbers using a bitwise or: var a = 13.6 | 0; //a == 13 We were talking about it and wondering a few things. How does it work? Our theory ...
12
votes
7answers
451 views

Bit counting in a contiguous memory chunk

I was asked in an interview the following question. int countSetBits(void *ptr, int start, int end); Synopsis: Assume that ptr points to a big chunk of memory. Viewing this memory as contiguous ...
12
votes
4answers
260 views

Rounded division by power of 2

I'm implementing a quantization algorithm from a textbook. I'm at a point where things pretty much work, except I get off-by-one errors when rounding. This is what the textbook has to say about ...
12
votes
6answers
864 views

Find three numbers appeared only once

In a sequence of length n, where n=2k+3, that is there are k unique numbers appeared twice and three numbers appeared only once. The question is: how to find the three unique numbers that appeared ...
11
votes
2answers
805 views

Invert 1 bit in C#

I have 1 bit in a byte (always in the lowest order position) that I'd like to invert. ie given 00000001 I'd like to get 00000000 and with 00000000 I'd like 00000001. I solved it like this: bit > ...
11
votes
11answers
2k views

bit twiddling: find next power of two

If I have a integer number n. How can I find the next number k > n : k = 2^i, with some i element of N By bitwise shifting or logic. Example: If I have n=123 how can I find k=128 which is a power of ...
10
votes
5answers
236 views

x-y = x+¬y+1 problem

I am currently reading a book about "bit fiddling" and the following formula appears: x-y = x+¬y+1 But this doesn't seem to work. Example: x = 0100 y = 0010 x-y = 0010 ¬y = 1101 ¬y+1 = ...
10
votes
12answers
2k views

In C/C++ what's the simplest way to reverse the order of bits in a byte?

While there are multiple ways to reverse bit order in a byte, I'm curious as to what is the "simplest" for a developer to implement. And by reversing I mean: 1110 -> 0111 0010 -> 0100 This ...
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 ...
10
votes
12answers
3k views

Is shifting bits faster than multiplying and dividing in Java? .NET?

Shifting bits left and right is apparently faster than multiplication and division operations on most (all?) CPUs if you happen to be using a power of 2. However, it can reduce the clarity of code for ...
10
votes
10answers
5k views

How to check my byte flag?

I use a byte to store some flag like : 10101010 and I would like to know how to verify that a specific bit is at 1 or 0.
9
votes
3answers
130 views

Binary Shift Differences between VB.NET and C#

I just found an interesting problem between translating some data: VB.NET: CByte(4) << 8 Returns 4 But C#: (byte)4 << 8 Returns 1024 Namely, why does VB.NET: (CByte(4) << ...
9
votes
4answers
301 views

C program to set k lower order bits

For a 32 bit integer, how do I set say k low order bits in C?
9
votes
10answers
354 views

How to insert zeros between bits in a bitmap?

I have some performance-heavy code that performs bit manipulations. It can be reduced to the following well-defined problem: Given a 13-bit bitmap, construct a 26-bit bitmap that contains the ...
9
votes
9answers
1k views

Compute fast log base 2 ceiling

What is a fast way to compute the (long int) ceiling(log_2(i)), where the input and output are 64-bit integers? Solutions for signed or unsigned integers are acceptable. I suspect the best way will be ...
9
votes
10answers
589 views

What is the difference between bit shifting and arithmetical operations?

int aNumber; aNumber = aValue / 2; aNumber = aValue >> 1; aNumber = aValue * 2; aNumber = aValue << 1; aNumber = aValue / 4; aNumber = aValue >> 2; aNumber = aValue * 8; aNumber ...
9
votes
5answers
526 views

ARM assembly puzzle

First of all, I'm not sure if solution even exists. I spent more than a couple of hours trying to come up with one, so beware. The problem: r1 contains an arbitrary integer, flags are not set ...
9
votes
10answers
7k views

Find most significant bit (left-most) that is set in a bit array

I have a bit array implementation where the 0th index is the MSB of the first byte in an array, the 8th index is the MSB of the second byte, etc... What's a fast way to find the first bit that is ...

1 2 3 4 5 14