Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • DSA
  • Practice Bitwise Algorithms
  • MCQs on Bitwise Algorithms
  • Tutorial on Biwise Algorithms
  • Binary Representation
  • Bitwise Operators
  • Bit Swapping
  • Bit Manipulation
  • Count Set bits
  • Setting a Bit
  • Clear a Bit
  • Toggling a Bit
  • Left & Right Shift
  • Gray Code
  • Checking Power of 2
  • Important Tactics
  • Bit Manipulation for CP
  • Fast Exponentiation
Open In App
Next Article:
Compute modulus division by a power-of-2-number
Next article icon

Rotate bits of a number

Last Updated : 26 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
Try it on GfG Practice
redirect icon

Given a 32-bit integer n and an integer d, rotate the binary representation of n by d positions in both left and right directions. After each rotation, convert the result back to its decimal representation and return both values in an array as [left rotation, right rotation].
Note: 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.  

  • In left rotation, the bits that fall off at left end are put back at right end. 
  • In right rotation, the bits that fall off at right end are put back at left end.

Examples:

Input: n = 28, d = 2
Output: [112, 7]
Explanation: 28 in Binary is: …0000000000011100. Rotating left by 2 positions, it becomes …0000000001110000 = 112 (in decimal). Rotating right by 2 positions, it becomes …0000000000000111 = 7 (in decimal).

Input: n = 29, d = 2
Output: [116, 16391]
Explanation: 29 in Binary is: …0000000000011101. Rotating left by 2 positions, it becomes …0000000001110100 = 116 (in decimal). Rotating right by 2 positions, it becomes …010000000000111 = 16391 (in decimal).

Input: n = 11, d = 10
Output: [11264, 704]

Approach:

One important point to note is, rotating by 32 is equivalent to no rotation, so we take d % 32. For left rotation, we shift the number left and bring the overflowed bits to the right. For right rotation, we shift the number right and bring the lost bits to the left. Finally, we mask the result to ensure it stays within 32 bits.

Steps to implement the above idea:

  • Compute d % 32 to handle unnecessary full rotations.
  • For right rotation, extract the rightmost d bits, shift n right, and place the extracted bits at the leftmost position.
  • Store the right rotated value in the result array after applying a 32-bit mask to keep only valid bits.
  • For left rotation, extract the leftmost d bits, shift n left, and place the extracted bits at the rightmost position.
  • Store the left rotated value in the result array and apply a 32-bit mask to maintain correctness.
  • Return the result array containing the left rotated and right rotated values.
C++
// C++ Code to perform left and right rotations  // on the binary representation of a 32-bit integer #include <bits/stdc++.h> using namespace std;  // Function to perform left rotation int leftRotate(int n, int d) {          // Rotation of 32 is same as rotation of 0     d = d % 32;          // Picking the rightmost (32 - d) bits     int mask = ~((1 << (32 - d)) - 1);     int shift = (n & mask);          // Moving the remaining bits to their new location     n = (n << d);          // Adding removed bits at leftmost end     n += (shift >> (32 - d));      // Ensuring 32-bit constraint     return n & ((1 << 32) - 1); }  // Function to perform right rotation int rightRotate(int n, int d) {          // Rotation of 32 is same as rotation of 0     d = d % 32;          // Picking the leftmost d bits     int mask = (1 << d) - 1;     int shift = (n & mask);          // Moving the remaining bits to their new location     n = (n >> d);          // Adding removed bits at rightmost end     n += (shift << (32 - d));      // Ensuring 32-bit constraint     return n & ((1 << 32) - 1); }  // Function to perform both rotations vector<int> rotateBits(int n, int d) {          vector<int> res(2);          // Calling left and right rotation functions     res[0] = leftRotate(n, d);     res[1] = rightRotate(n, d);          return res; }  // Driver code int main() {          int n = 28, d = 2;      vector<int> result = rotateBits(n, d);          cout << result[0] << " " << result[1] << endl;          return 0; } 
Java
// Java Code to perform left and right rotations  // on the binary representation of a 32-bit integer class GfG {      // Function to perform left rotation     static int leftRotate(int n, int d) {          // Rotation of 32 is same as rotation of 0         d = d % 32;          // Moving bits left and wrapping around         return (n << d) | (n >>> (32 - d));     }      // Function to perform right rotation     static int rightRotate(int n, int d) {          // Rotation of 32 is same as rotation of 0         d = d % 32;          // Moving bits right and wrapping around         return (n >>> d) | (n << (32 - d));     }      // Function to perform both rotations     static int[] rotateBits(int n, int d) {                  int[] res = new int[2];                  // Calling left and right rotation functions         res[0] = leftRotate(n, d);         res[1] = rightRotate(n, d);                  return res;     }      // Driver code     public static void main(String[] args) {                  int n = 28, d = 2;          int[] result = rotateBits(n, d);                  System.out.println(result[0] + " " + result[1]);     } } 
Python
# Python Code to perform left and right rotations  # on the binary representation of a 32-bit integer  # Function to perform left rotation def leftRotate(n, d):          # Rotation of 32 is same as rotation of 0     d = d % 32          # Picking the rightmost (32 - d) bits     mask = ~((1 << (32 - d)) - 1)     shift = (n & mask)          # Moving the remaining bits to their new location     n = (n << d)          # Adding removed bits at leftmost end     n += (shift >> (32 - d))      # Ensuring 32-bit constraint     return n & ((1 << 32) - 1)  # Function to perform right rotation def rightRotate(n, d):          # Rotation of 32 is same as rotation of 0     d = d % 32          # Picking the leftmost d bits     mask = (1 << d) - 1     shift = (n & mask)          # Moving the remaining bits to their new location     n = (n >> d)          # Adding removed bits at rightmost end     n += (shift << (32 - d))      # Ensuring 32-bit constraint     return n & ((1 << 32) - 1)  # Function to perform both rotations def rotateBits(n, d):          res = [0] * 2          # Calling left and right rotation functions     res[0] = leftRotate(n, d)     res[1] = rightRotate(n, d)          return res  # Driver code if __name__ == "__main__":          n, d = 28, 2      result = rotateBits(n, d)          print(result[0], result[1]) 
C#
// C# Code to perform left and right rotations  // on the binary representation of a 32-bit integer using System;  class GfG {      // Function to perform left rotation     static int LeftRotate(int n, int d) {          // Rotation of 32 is same as rotation of 0         d = d % 32;          // Moving bits left and wrapping around         return (n << d) | (int)((uint)n >> (32 - d));     }      // Function to perform right rotation     static int RightRotate(int n, int d) {          // Rotation of 32 is same as rotation of 0         d = d % 32;          // Moving bits right and wrapping around         return ((int)((uint)n >> d)) | (n << (32 - d));     }      // Function to perform both rotations     static int[] RotateBits(int n, int d) {                  int[] res = new int[2];                  // Calling left and right rotation functions         res[0] = LeftRotate(n, d);         res[1] = RightRotate(n, d);                  return res;     }      // Driver code     static void Main() {                  int n = 28, d = 2;          int[] result = RotateBits(n, d);                  Console.WriteLine(result[0] + " " + result[1]);     } } 
JavaScript
// JavaScript Code to perform left and right rotations  // on the binary representation of a 32-bit integer  // Function to perform left rotation function leftRotate(n, d) {      // Rotation of 32 is same as rotation of 0     d = d % 32;      // Moving bits left and wrapping around     return ((n << d) | (n >>> (32 - d))) >>> 0; }  // Function to perform right rotation function rightRotate(n, d) {      // Rotation of 32 is same as rotation of 0     d = d % 32;      // Moving bits right and wrapping around     return ((n >>> d) | (n << (32 - d))) >>> 0; }  // Function to perform both rotations function rotateBits(n, d) {          let res = new Array(2);          // Calling left and right rotation functions     res[0] = leftRotate(n, d);     res[1] = rightRotate(n, d);          return res; }  // Driver code let n = 28, d = 2;  let result = rotateBits(n, d);  console.log(result[0], result[1]); 

Output
112 7 

Time Complexity: O(1) – Only a few bitwise operations.
Space Complexity: O(1) – No extra space except variables. 



Next Article
Compute modulus division by a power-of-2-number
author
kartik
Improve
Article Tags :
  • Bit Magic
  • DSA
  • rotation
Practice Tags :
  • Bit Magic

Similar Reads

  • Bitwise Algorithms
    Bitwise algorithms in Data Structures and Algorithms (DSA) involve manipulating individual bits of binary representations of numbers to perform operations efficiently. These algorithms utilize bitwise operators like AND, OR, XOR, NOT, Left Shift, and Right Shift. BasicsIntroduction to Bitwise Algori
    4 min read
  • Introduction to Bitwise Algorithms - Data Structures and Algorithms Tutorial
    Bit stands for binary digit. A bit is the basic unit of information and can only have one of two possible values that is 0 or 1. In our world, we usually with numbers using the decimal base. In other words. we use the digit 0 to 9 However, there are other number representations that can be quite use
    15+ min read
  • Bitwise Operators in C
    In C, bitwise operators are used to perform operations directly on the binary representations of numbers. These operators work by manipulating individual bits (0s and 1s) in a number. The following 6 operators are bitwise operators (also known as bit operators as they work at the bit-level). They ar
    6 min read
  • Bitwise Operators in Java
    In Java, Operators are special symbols that perform specific operations on one or more than one operands. They build the foundation for any type of calculation or logic in programming. There are so many operators in Java, among all, bitwise operators are used to perform operations at the bit level.
    6 min read
  • Python Bitwise Operators
    Python bitwise operators are used to perform bitwise calculations on integers. The integers are first converted into binary and then operations are performed on each bit or corresponding pair of bits, hence the name bitwise operators. The result is then returned in decimal format. Note: Python bitwi
    6 min read
  • JavaScript Bitwise Operators
    In JavaScript, a number is stored as a 64-bit floating-point number but bitwise operations are performed on a 32-bit binary number. To perform a bit-operation, JavaScript converts the number into a 32-bit binary number (signed) and performs the operation and converts back the result to a 64-bit numb
    5 min read
  • All about Bit Manipulation
    Bit Manipulation is a technique used in a variety of problems to get the solution in an optimized way. This technique is very effective from a Competitive Programming point of view. It is all about Bitwise Operators which directly works upon binary numbers or bits of numbers that help the implementa
    14 min read
  • What is Endianness? Big-Endian & Little-Endian
    Computers operate using binary code, a language made up of 0s and 1s. This binary code forms the foundation of all computer operations, enabling everything from rendering videos to processing complex algorithms. A single bit is a 0 or a 1, and eight bits make up a byte. While some data, such as cert
    5 min read
  • Bits manipulation (Important tactics)
    Prerequisites: Bitwise operators in C, Bitwise Hacks for Competitive Programming, Bit Tricks for Competitive Programming Table of Contents Compute XOR from 1 to n (direct method)Count of numbers (x) smaller than or equal to n such that n+x = n^xHow to know if a number is a power of 2?Find XOR of all
    15+ min read
  • Easy Problems on Bit Manipulations and Bitwise Algorithms

    • Binary representation of a given number
      Given an integer n, the task is to print the binary representation of the number. Note: The given number will be maximum of 32 bits, so append 0's to the left if the result string is smaller than 30 length. Examples: Input: n = 2Output: 00000000000000000000000000000010 Input: n = 0Output: 0000000000
      6 min read

    • Count set bits in an integer
      Write an efficient program to count the number of 1s in the binary representation of an integer.Examples : Input : n = 6Output : 2Binary representation of 6 is 110 and has 2 set bits Input : n = 13Output : 3Binary representation of 13 is 1101 and has 3 set bits [Naive Approach] - One by One Counting
      15+ min read

    • Add two bit strings
      Given two binary strings s1 and s2 consisting of only 0s and 1s. Find the resultant string after adding the two Binary Strings.Note: The input strings may contain leading zeros but the output string should not have any leading zeros. Examples: Input: s1 = "1101", s2 = "111"Output: 10100Explanation:
      2 min read

    • Turn off the rightmost set bit
      Given an integer n, turn remove turn off the rightmost set bit in it. Input: 12Output: 8Explanation : Binary representation of 12 is 00...01100. If we turn of the rightmost set bit, we get 00...01000 which is binary representation of 8 Input: 7 Output: 6 Explanation : Binary representation for 7 is
      7 min read

    • Rotate bits of a number
      Given a 32-bit integer n and an integer d, rotate the binary representation of n by d positions in both left and right directions. After each rotation, convert the result back to its decimal representation and return both values in an array as [left rotation, right rotation].Note: A rotation (or cir
      7 min read

    • Compute modulus division by a power-of-2-number
      Given two numbers n and d where d is a power of 2 number, the task is to perform n modulo d without the division and modulo operators. Input: 6 4Output: 2 Explanation: As 6%4 = 2Input: 12 8Output: 4Explanation: As 12%8 = 4Input: 10 2Output: 0Explanation: As 10%2 = 0 Approach: The idea is to leverage
      3 min read

    • Find the Number Occurring Odd Number of Times
      Given an array of positive integers. All numbers occur an even number of times except one number which occurs an odd number of times. Find the number in O(n) time & constant space. Examples : Input : arr = {1, 2, 3, 2, 3, 1, 3}Output : 3 Input : arr = {5, 7, 2, 7, 5, 2, 5}Output : 5 Recommended
      12 min read

    • Program to find whether a given number is power of 2
      Given a positive integer n, the task is to find if it is a power of 2 or not. Examples: Input : n = 16Output : YesExplanation: 24 = 16 Input : n = 42Output : NoExplanation: 42 is not a power of 2 Input : n = 1Output : YesExplanation: 20 = 1 Approach 1: Using Log - O(1) time and O(1) spaceThe idea is
      12 min read

    • Find position of the only set bit
      Given a number n containing only 1 set bit in its binary representation, the task is to find the position of the only set bit. If there are 0 or more than 1 set bits, then return -1. Note: Position of set bit '1' should be counted starting with 1 from the LSB side in the binary representation of the
      8 min read

    • Check for Integer Overflow
      Given two integers a and b. The task is to design a function that adds two integers and detects overflow during the addition. If the sum does not cause an overflow, return their sum. Otherwise, return -1 to indicate an overflow.Note: You cannot use type casting to a larger data type to check for ove
      7 min read

    • Find XOR of two number without using XOR operator
      Given two integers, the task is to find XOR of them without using the XOR operator. Examples : Input: x = 1, y = 2Output: 3 Input: x = 3, y = 5Output: 6 Approach - Checking each bit - O(log n) time and O(1) spaceA Simple Solution is to traverse all bits one by one. For every pair of bits, check if b
      9 min read

    • Check if two numbers are equal without using arithmetic and comparison operators
      Given two numbers, the task is to check if two numbers are equal without using Arithmetic and Comparison Operators or String functions. Method 1 : The idea is to use XOR operator. XOR of two numbers is 0 if the numbers are the same, otherwise non-zero. C/C++ Code // C++ program to check if two numbe
      8 min read

    • Detect if two integers have opposite signs
      Given two integers a and b, the task is to determine whether they have opposite signs. Return true if the signs of the two numbers are different and false otherwise. Examples: Input: a = -5, b = 10Output: trueExplanation: One number is negative and the other is positive, so their signs are different
      9 min read

    • Swap Two Numbers Without Using Third Variable
      Given two variables a and y, swap two variables without using a third variable. Examples: Input: a = 2, b = 3Output: a = 3, b = 2 Input: a = 20, b = 0Output: a = 0, b = 20 Input: a = 10, b = 10Output: a = 10, b = 10 Table of Content Using Arithmetic OperatorsUsing Bitwise XORBuilt-in SwapUsing Arith
      6 min read

    • Russian Peasant (Multiply two numbers using bitwise operators)
      Given two integers a and b, the task is to multiply them without using the multiplication operator. Instead of that, use the Russian Peasant Algorithm. Examples: Input: a = 2, b = 5Output: 10Explanation: Product of 2 and 5 is 10. Input: a = 6, b = 9Output: 54Explanation: Product of 6 and 9 is 54. In
      4 min read

geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences