1. Overview

In this tutorial, we’ll discuss the problem of counting the number of set bits in an integer. First, we’ll define the problem. Then, we’ll give an example to explain it.

Finally, we’ll present three different approaches to solving it.

2. Defining the Problem

Suppose we have an integer X and we need to count the number of bits that are equal to one in the binary representation of X.

Let’s take a look at the following example for a better understanding. Given an integer X = 9, let’s count the number of set bits in it.

If we look at the binary representation of X it looks like this 1001. There are two bits that are equal to one. Thus, the answer to the given example is 2.

3. Naive Approach

The main idea in this approach is to iterate over each bit in the binary representation of the given number and see if it’s activated, we increase the answer by one. Otherwise, we skip it.

As long as the given number is greater than zero, we get the first bit of X by taking the bitwise and operation between X and 1. If the first bit is on, we increase the answer by one. After that, we get rid of the first bit by dividing X by two.

When the number X becomes equal to zero, the answer will have the number of set bits in the given integer X.

3.1. Algorithm

Let’s take a look at the implementation of the algorithm:

Rendered by QuickLaTeX.com

Initially, we declare the countSetBits function that will return the number of set bits in an integer. The function will have one parameter X, which will represent the given number to count its set bits.

First, we declare the answer to store the number of set bits. Second, while the given number X is greater than zero which means there’re set bits we didn’t count yet, so we get the first bit by taking the bitwise-and operation between X and 1.

Third, if the first bit we got is equal to 1, it means the first bit is turned on. So, we increase the answer by one. Then, we divide X by 2 in order to shift the binary representation of X to the right by one to get rid of the first bit we’ve checked.

Finally, we return the answer which stores the number of set bits in the given number X.

3.2. Complexity

The time complexity of this algorithm is \mathbf{O(Log_2(X))}, where X is the given number. The reason behind this complexity is that we iterate over each bit of X, and there are Log_2(X) bits.

4. Jumping on Ones Approach

The main idea in this approach is to get the last set bit in the given number, increase the number of set bits by one and then turn off that bit. We keep repeating that operation while the number is greater than zero.

While the given number is greater than zero, we get the last set bit of X by taking the bitwise-and operation between X and -X.

(Recall we can get \textbf{-X} by flipping the state of all bits in \textbf{X} then adding one to the result). The result of this operation will turn off all the bits and keep the last set bit on. After that, we delete that last set bit from X and increase our answer by one.

When the number X becomes equal to zero, the answer will have the number of set bits in the given integer X.

4.1. Algorithm

Let’s take a look at the implementation of the algorithm:

Rendered by QuickLaTeX.com

Initially, we declare the same countSetBits function as the previous approach, which will return the number of set bits in the given number X.

Then, we declare the answer to store the number of set bits. Next, while the given number X is greater than zero which means there’re set bits we didn’t count yet, we get the last set bit by taking the bitwise-and operation between X and -X.

After that, we subtract that bit from X in order to remove it and then we increase the answer by one.

Finally, the countSetBits(X) will return the number of set bits in the given number X.

4.2. Complexity

The time complexity of this algorithm is \mathbf{O(N)}, where N is the number of ones in the binary representation of the given number X which could be O(1) in the best-case scenario and O(Log_2(X)) in the worst-case scenario.

The reason for this complexity is that we just get the last set bit in the number and remove it as long as the number has turned on bits in his binary representation.

5. Hamming Weight Approach

The main idea here is to cut the binary representation of the given number into blocks, which store the sum of the set bits of the corresponding block. Next, we isolate the odd blocks from the even blocks then align them above each other, and add them up to get new blocks that have sizes twice the old blocks and store the sum of the set bits in the adjacent corresponding old blocks.

First, we’ll start with blocks of size one. We get the odd bits and the even bits. Then, we align them above each other and add them up to get blocks of size two which store the sum of corresponding adjacent bits.

Next, we’ll do the same process on blocks of size two. We separate the odd blocks from the even blocks, align them above each other, and add them up to get blocks of size four. Each block stores the sum of the four corresponding bits. We do the same with blocks of size four to get blocks of size eight, eight to sixteen and sixteen to thirty-two.

Finally, when we reach a block of size 32 that means we get the sum of all 32 bits of the given integer, which means we have the sum of all set bits in the given number.

5.1. Algorithm

Let’s take a look at the implementation of the algorithm:

Rendered by QuickLaTeX.com

Initially, we have the countSetBits function, which will get us the number of set bits of the given integer number.

Next, we’ll do the following steps:

  1. We get the odd bits by taking the bitwise-and operation between X and 0 \times 55555555 which has a binary representation equal to 010....010101, now in order to get the even bits and align the result with the odd bits, we’ll shift the binary representation of X to right by one then we’ll take the bitwise-and operation with 0 \times 55555555. The sum of both operations will return a new number that has blocks of size two each of them stores the sum of the corresponding adjection bits.
  2. We get blocks of size two by doing the same operations in the previous step, but instead, we’ll take the bitwise-and with the number 0 \times 33333333 whose binary representation is equal to 0011...00110011 and shift the binary representation X to the right by two to get the even blocks.
  3. We get blocks of size four by doing the same operations, but instead, we’ll take the bitwise-and with the number 0{\times}0F0F0F0F which his binary representation is equal to 00001111...00001111, and shifting the binary representation X to the right by four to get the even blocks.
  4. We get blocks of size eight by doing the same operations, but instead, we’ll take the bitwise-and with the number 0{\times}00FF00FF which his binary representation is equal to .....0000000011111111, and shifting the binary representation X to the right by eight to get the even blocks.
  5. We get blocks of size sixteen by doing the same operations, but instead, we’ll take the bitwise-and with the number 0{\times}0000FFFF which his binary representation is equal to 00000000000000001111111111111111, and shifting the binary representation X to the right by sixteen to get the even blocks.

Finally, the number X will be equal to the sum of all bits in a block of size 32 which is the sum of whole bits of the given number.

5.2. Complexity

The time complexity of this algorithm is \mathbf{O(1)}. The reason for this complexity is that we do a constant number of arithmetic operations.

6. Conclusion

In this article, we presented the problem of finding the number of set bits in an integer.

First, we provided an example to explain the problem. Then, we explored three different approaches to solving it.

Finally, we walked through their implementations, with each approach having a better time complexity than the previous one.

Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.