Magical usage of Bitwise operators - Get optimized solutions for many arithmatic problems

Gorav Singal

October 18, 2019

TL;DR

XOR swaps values without a temp variable, n & (n-1) clears the lowest set bit (used to count bits and check power-of-2), and left/right shifts replace multiply/divide by 2.

Magical usage of Bitwise operators - Get optimized solutions for many arithmatic problems

Introduction

I will list some of the interesting usage of bitwise operators, which looks complex on first look. But, if you understand them. They are so magically wonderful that they appears to be the most optimized solution of problem.

Some Basics for Bitwise operators

  1. Basic operators are:
& for AND
| for OR
^ for XOR
>> for right shift
<< for left shift
~ for Negate
  1. Left or right shift does not change the signed-bit of a number
  2. Right shift a number is equivalent to divide a number by 2
  3. Left shift a number is equivalent to multiply a number by 2

Solutions

1. Get LSB (Least Significant Digit)

Simply do an & operation with 1 and number.

num & 1
# it will simply return either 0 or 1

2. Counting the number of 1s in a number (Binary)

You need to get the LSB (least significant bit), and check of it is equal to 1.

Code to count number of 1s

public int count1s(int num) {
    int count = 0;
    while (num > 0) {
        //or, you can do if (num & 1 != 0)
        count += num & 1;
        num = num >> 1;
    }
    return count;
}

3. Counting number of 1s in optimized way

Above method will run as many times as number of bits in the number. We could simply jump to 1s in the number. How?

Lets see power of masking. We have to target just the 1-bit. We can reset the 1s on LSB side one by one.

# example: binary representation: 1010
# we want to reset it to 1000

num & (num - 1)
# i.e. 1010 & 1000 = 1000

So, how do we count number of 1s

public int count1s(int num) {
    int count = 0;
    while (num > 0) {
        //or, you can do if (num & 1 != 0)
        count += num & 1;
        num = num & (num - 1);
    }
    return count;
}

4. Swap Bits

Given a number, swap ith and jth bit

0 1 1 0 0 1 1 0

# swap 2nd and 5th bits (from right)

Note: If the bits are different, only then we have to swap them. Else, no need. So, we need to first get those bits. And check for equality. If they are not same, only then swap them. And, what do we mean by swap. We just need to flip their value. To swap, we need to create a mask.

# num
i = 2;
j = 5;

if ((num >> i & 1) != (num >> j & 1)) {
    # mask for ith, and jth bit
    # (1 << i) | (1 << j)

    # XOR it with num
    num = num ^ ((1 << i) | (1 << j))
}
# else, no need to swap.

We optimized above code not to unnecessary swap bits when they are same. We just set ith and jth bit on our mask as 1. And, we will need to XOR it with the number.

0 1 1 0 0 1 1 0
    -     -   
# - denote positions we want to swap
# mask: 
0 0 1 0 0 1 0 0

# final XOR operation
0 1 1 0 0 1 1 0
0 0 1 0 0 1 0 0

=>
0 1 0 0 0 0 1 0
Share

Related Posts

What FAANG companies expect in their interview from candidates

What FAANG companies expect in their interview from candidates

Its every software engineer’s dream to work with the big FAANG companies…

How to prepare for your next Coding Interview

How to prepare for your next Coding Interview

Here are some tips while preparing for your coding interviews. 1. Do study or…

How to nail your Coding Interview

How to nail your Coding Interview

Here are some tips while giving your coding interviews. 1. Never try to jump to…

Coding Interview - Useful Terms Cheatsheet

Coding Interview - Useful Terms Cheatsheet

Big-O notation In simpler terms, its kind of a unit to measure how efficient an…

List of Sorting Algorithms

List of Sorting Algorithms

This topic is one of the most common studied. When somebody started preparation…

Coding Interview Cheatsheet

Coding Interview Cheatsheet

Latest Posts

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI video generation went from “cool demo” to “usable in production” in 2024-202…

AI Models in 2025 — Cost, Capabilities, and Which One to Use

AI Models in 2025 — Cost, Capabilities, and Which One to Use

Choosing the right AI model is one of the most impactful decisions you’ll make…

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

Generating one image with AI costs between $0.002 and $0.12. That might sound…

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

Two years ago, AI coding meant one thing: GitHub Copilot autocompleting your…

AI Agents Demystified — It's Just Automation With a Better Brain

AI Agents Demystified — It's Just Automation With a Better Brain

Let’s cut through the noise. If you read Twitter or LinkedIn, you’d think “AI…

Supply Chain Security — Protecting Your Software Pipeline

Supply Chain Security — Protecting Your Software Pipeline

In 2024, a single malicious contributor nearly compromised every Linux system on…