C++ Program to Check if two numbers are bit rotations of each other or not
Last Updated :
11 Jul, 2022
Given two positive integers x and y, check if one integer is obtained by rotating bits of other.
Input constraint: 0 < x, y < 2^32
Bit Rotation: A rotation (or circular shift) is an operation similar to shift except that the bits that fall off at one end are put back to the other end.
More information on bit rotation can be found here
Example 1 :
Input : a = 8, b = 1
Output : yes
Explanation :
Representation of a = 8 : 0000 0000 0000 0000 0000 0000 0000 1000
Representation of b = 1 : 0000 0000 0000 0000 0000 0000 0000 0001
If we rotate a by 3 units right we get b, hence answer is yes
Example 2 :
Input : a = 122, b = 2147483678
Output : yes
Explanation :
Representation of a = 122 : 0000 0000 0000 0000 0000 0000 0111 1010
Representation of b = 2147483678 : 1000 0000 0000 0000 0000 0000 0001 1110
If we rotate a by 2 units right we get b, hence answer is yes
Since total bits in which x or y can be represented is 32 since x, y > 0 and x, y < 2^32.
So we need to find all 32 possible rotations of x and compare it with y till x and y are not equal.
To do this we use a temporary variable x64 with 64 bits which is result of concatenation of x to x ie..
x64 has first 32 bits same as bits of x and last 32 bits are also same as bits of x64.
Then we keep on shifting x64 by 1 on right side and compare the rightmost 32 bits of x64 with y.
In this way we'll be able to get all the possible bits combination due to rotation.
Here is implementation of above algorithm.
C++
// C++ program to check if two numbers are bit rotations
// of each other.
#include <iostream>
using namespace std;
// function to check if two numbers are equal
// after bit rotation
bool isRotation(unsigned int x, unsigned int y)
{
// x64 has concatenation of x with itself.
unsigned long long int x64 = x | ((unsigned long long int)x << 32);
while (x64 >= y)
{
// comparing only last 32 bits
if (unsigned(x64) == y)
return true;
// right shift by 1 unit
x64 >>= 1;
}
return false;
}
// driver code to test above function
int main()
{
unsigned int x = 122;
unsigned int y = 2147483678;
if (isRotation(x, y))
cout << "yes" << endl;
else
cout << "no" << endl;
return 0;
}
Time Complexity: O(log2n), where n is the given number
Auxiliary Space: O(1)
Please refer complete article on Check if two numbers are bit rotations of each other or not for more details!
Similar Reads
Javascript Program to Check if two numbers are bit rotations of each other or not Given two positive integers x and y (0 < x, y < 2^32), check if one integer is obtained by rotating bits of the other. Bit Rotation: A rotation (or circular shift) is an operation similar to a shift except that the bits that fall off at one end are put back to the other end.Examples: Input : a
3 min read
Check if two numbers are bit rotations of each other or not Given two positive integers x and y (0 < x, y < 2^32), check if one integer is obtained by rotating bits of the other. Bit Rotation: A rotation (or circular shift) is an operation similar to a shift except that the bits that fall off at one end are put back to the other end. Examples: Input :
6 min read
Check if Strings Are Rotations of Each Other Given two string s1 and s2 of same length, the task is to check whether s2 is a rotation of s1.Examples: Input: s1 = "abcd", s2 = "cdab"Output: trueExplanation: After 2 right rotations, s1 will become equal to s2.Input: s1 = "aab", s2 = "aba"Output: trueExplanation: After 1 left rotation, s1 will be
15+ min read
Minimize number of rotations on array A such that it becomes equal to B Given arrays, A[] and array B[] of size N, the task is to minimize the number of rotations (left or right) on A such that it becomes equal to B. Note: It is always possible to change A to B. Examples: Input: A[] = {1, 2, 3, 4, 5}, B[] = {4, 5, 1, 2, 3} Output: 2Explanation: A[] can be changed to B[]
10 min read
Minimum number of rotations required to convert given Matrix to another Given two 2D arrays arr[][] and brr[][] of equal size. The task is to find the minimum number of rotations required either clockwise or anticlockwise to convert arr[][] to brr[][], in the following manner: +x means x rotation in clockwise direction-x means x rotation in anti-clockwise direction0 mea
8 min read