Reverse String - Leet Code Solution
Problem Statement Write a function that reverses a string. The input string is…
October 18, 2019
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.
& for AND
| for OR
^ for XOR
>> for right shift
<< for left shift
~ for Negate
Simply do an & operation with 1 and number.
num & 1
# it will simply return either 0 or 1
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;
}
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;
}
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
Problem Statement Write a function that reverses a string. The input string is…
Problem Statement Determine whether an integer is a palindrome. An integer is a…
Problem Statement The string “PAYPALISHIRING” is written in a zigzag pattern on…
This is another very useful sorting algorithm based on Heap data structure. Read…
This problem is a simple mathematical calculation. Lets start deriving some…
Its every software engineer’s dream to work with the big FAANG companies…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…