Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • 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
  • 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:
Toggle bits in the given range
Next article icon

Toggle bits in the given range

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

Given a non-negative number n and two values l and r. The problem is to toggle the bits in the range l to r in the binary representation of n, i.e., to toggle bits from the lth least significant bit bit to the rth least significant bit (the rightmost bit as counted as first bit). A toggle operation flips a bit 0 to 1 and a bit 1 to 0.
Constraint: 1 <= l <= r <= number of bits in the binary representation of n.
Examples: 

Input: n = 17, l = 1, r = 3
Output: 22
Explanation: (17)10 = (10001)2
                       (22)10 = (10110)2
The bits in the range 1 to 3 in the binary representation of 17 are toggled.

Input: n = 50, l = 2, r = 5
Output: 44

Explanation: (50)10 = (110010)2
                       (44)10 = (101100)2
The bits in the range 2 to 5 in the binary representation of 50 are toggled.

Recommended Practice
Toggle bits given range
Try It!


Approach: Following are the steps:

  1. Calculate num as = ((1 << r) - 1) ^ ((1 << (l-1)) - 1) or as ((1 <<r)-l). This will produce a number num having r number of bits and bits in the range l to r (from rightmost end in binary representation) are the only set bits.
  2. Now, perform n = n ^ num. This will toggle the bits in the range l to r in n.
C++
// C++ implementation to toggle bits in // the given range #include <bits/stdc++.h> using namespace std;  // function to toggle bits in the given range unsigned int toggleBitsFromLToR(unsigned int n,                                 unsigned int l,                                 unsigned int r) {     // calculating a number 'num' having 'r'     // number of bits and bits in the range l     // to r are the only set bits     int num = ((1 << r) - 1) ^ ((1 << (l - 1)) - 1);      // toggle bits in the range l to r in 'n'     // and return the number     // Besides this, we can calculate num as: num=(1<<r)-l .     return (n ^ num); }  // Driver program to test above int main() {     unsigned int n = 17;     unsigned int l = 1, r = 3;     cout << toggleBitsFromLToR(n, l, r);     return 0; } 
Java
// Java implementation to toggle bits in // the given range import java.io.*;  class GFG {     // Function to toggle bits in the given range     static int toggleBitsFromLToR(int n, int l, int r)     {         // calculating a number 'num' having 'r'         // number of bits and bits in the range l         // to r are the only set bits         int num = ((1 << r) - 1) ^ ((1 << (l - 1)) - 1);          // toggle bits in the range l to r in 'n'         // and return the number         // Besides this, we can calculate num as:         // num=(1<<r)-l .         return (n ^ num);     }      // driver program     public static void main(String[] args)     {         int n = 50;         int l = 2, r = 5;         System.out.println(toggleBitsFromLToR(n, l, r));     } }  // Contributed by Pramod Kumar 
C#
// C# implementation to toggle bits // in the given range using System;  namespace Toggle { public class GFG {      // Function to toggle bits in the given range     static int toggleBitsFromLToR(int n, int l, int r)     {         // calculating a number 'num' having 'r'         // number of bits and bits in the range l         // to r are the only set bits         int num = ((1 << r) - 1) ^ ((1 << (l - 1)) - 1);          // toggle bits in the range l to r in 'n'         // Besides this, we can calculate num as:         // num=(1<<r)-l .         // and return the number         return (n ^ num);     }      // Driver Code     public static void Main()     {         int n = 50;         int l = 2, r = 5;         Console.Write(toggleBitsFromLToR(n, l, r));     } } }  // This code is contributed by Sam007. 
JavaScript
<script>  // Javascript implementation to toggle bits in // the given range  // function to toggle bits in the given range function toggleBitsFromLToR(n, l, r) {     // calculating a number 'num' having 'r'     // number of bits and bits in the range l     // to r are the only set bits     var num = ((1 << r) - 1) ^ ((1 << (l - 1)) - 1);      // toggle bits in the range l to r in 'n'     // and return the number //Besides this, we can calculate num as: num=(1<<r)-l .     return (n ^ num); }  // Driver program to test above var n = 50; var l = 2, r = 5; document.write( toggleBitsFromLToR(n, l, r));  </script>   
PHP
<?php // PHP implementation  // to toggle bits in // the given range  // function to toggle bits  // in the given range function toggleBitsFromLToR($n, $l, $r) {          // calculating a number      // 'num' having 'r'     // number of bits and      // bits in the range l     // to r are the only      // set bits     $num = ((1 << $r) - 1) ^             ((1 << ($l - 1)) - 1);      // toggle bits in the      // range l to r in 'n'     //Besides this, we can calculate num as: $num=(1<<$r)-$l .     // and return the number      return ($n ^ $num); }      // Driver Code     $n = 50;     $l = 2; $r = 5;     echo toggleBitsFromLToR($n, $l, $r);  // This code is contributed by anuj_67 ?> 
Python3
# Python implementation # to toggle bits in # the given range  # function to toggle bits # in the given range   def toggleBitsFromLToR(n, l, r):      # calculating a number     # 'num' having 'r'     # number of bits and     # bits in the range l     # to r are the only set bits     num = ((1 << r) - 1) ^ ((1 << (l - 1)) - 1)      # toggle bits in the     # range l to r in 'n'     # Besides this, we can calculate num as: num=(1<<r)-l .      # and return the number     return (n ^ num)  # Driver code   n = 50 l = 2 r = 5  print(toggleBitsFromLToR(n, l, r))  # This code is contributed # by Anant Agarwal. 

Output
44

Time Complexity: O(1)
Auxiliary Space: O(1)

Approach 2: 
Iterate over the given range from L to R and check if the ith bit is set or not. if the ith bit is set then make it unset otherwise make it set bit.

C++
// C++ implementation to toggle bits in // the given range #include <bits/stdc++.h>  using namespace std;  // Function to toggle bits in the given range int toggleBitsFromLToR(int N, int L, int R) {     int res = N;     for (int i = L; i <= R; i++) {          // Set bit         if ((N & (1 << (i - 1))) != 0) {              // XOR will set 0 to already set             // bits(a^a=0)             res = res ^ (1 << (i - 1));         }          // unset bits         else {             // OR will set'0'bits to 1             res = res | (1 << (i - 1));         }     }     return res; }  // Driver code int main() {     int n = 50;     int l = 2, r = 5;     cout << toggleBitsFromLToR(n, l, r);      return 0; }  // This code is contributed by phasing17 
Java
// Java implementation to toggle bits in // the given range import java.io.*;  class GFG {      // Function to toggle bits in the given range     static int toggleBitsFromLToR(int N, int L, int R)     {         int res = N;         for (int i = L; i <= R; i++) {              // Set bit             if ((N & (1 << (i - 1))) != 0) {                  // XOR will set 0 to already set                 // bits(a^a=0)                 res = res ^ (1 << (i - 1));             }              // unset bits             else {                 // OR will set'0'bits to 1                 res = res | (1 << (i - 1));             }         }         return res;     }      // Driver method     public static void main(String[] args)     {         int n = 50;         int l = 2, r = 5;         System.out.println(toggleBitsFromLToR(n, l, r));     } }  // Contributed by Ocean Bhardwaj 
C#
// C# implementation to toggle bits in // the given range using System;  class GFG {    // Function to toggle bits in the given range   static int toggleBitsFromLToR(int N, int L, int R)   {     int res = N;     for (int i = L; i <= R; i++) {        // Set bit       if ((N & (1 << (i - 1))) != 0) {          // XOR will set 0 to already set         // bits(a^a=0)         res = res ^ (1 << (i - 1));       }        // unset bits       else {         // OR will set'0'bits to 1         res = res | (1 << (i - 1));       }     }     return res;   }    // Driver Code   public static void Main(string[] args)   {     int n = 50;     int l = 2, r = 5;      // Function call     Console.WriteLine(toggleBitsFromLToR(n, l, r));   } }  // This code is Contributed by phasing17 
JavaScript
// JavaScript implementation to toggle bits in // the given range  // Function to toggle bits in the given range function toggleBitsFromLToR(N, L, R) {     let res = N;     for (let i = L; i <= R; i++) {          // Set bit         if ((N & (1 << (i - 1))) != 0) {              // XOR will set 0 to already set             // bits(a^a=0)             res = res ^ (1 << (i - 1));         }          // unset bits         else {             // OR will set'0'bits to 1             res = res | (1 << (i - 1));         }     }     return res; }   // Driver code let n = 50; let l = 2, r = 5; console.log(toggleBitsFromLToR(n, l, r));    // This code is contributed by phasing17 
Python3
# Python3 implementation to toggle bits in # the given range  # Function to toggle bits in the given range def toggleBitsFromLToR(N, L, R):      res = N     for i in range(L, R + 1):          # Set bit         if ((N & (1 << (i - 1))) != 0):              # XOR will set 0 to already set             # bits(a^a=0)             res = res ^ (1 << (i - 1))          # unset bits         else:             # OR will set'0'bits to 1             res = res | (1 << (i - 1))      return res  # Driver code n = 50 l = 2 r = 5 print(toggleBitsFromLToR(n, l, r))  # This code is contributed by phasing17 

Output
44

Time Complexity: O(R - L + 1) 
Auxiliary Space: O(1)



 


Next Article
Toggle bits in the given range

A

Ayush Jauhari
Improve
Article Tags :
  • Bit Magic
  • DSA
Practice Tags :
  • Bit Magic

Similar Reads

    Unset bits in the given range
    Given a non-negative number n and two values l and r. The problem is to unset the bits in the range l to r in the binary representation of n, i.e, to unset bits from the rightmost lth bit to the rightmost rth bit.Constraint: 1 <= l <= r <= number of bits in the binary representation of n.Ex
    8 min read
    Set bits in N equals to M in the given range.
    You are given two 32-bit numbers, N and M, and two bit positions, i and j. Write a method to set all bits between i and j in N equal to M (e.g., M becomes a substring of N located at i and starting at j).Examples : Input : N = 1, M = 2, i = 2, j = 4Output: 9N = 00000001(Considering 8 bits only)M = 1
    7 min read
    Set all the bits in given range of a number
    Given a non-negative number n and two values l and r. The problem is to set the bits in the range l to r in the binary representation of n, i.e, to unset bits from the rightmost lth bit to the rightmost r-th bit. Constraint: 1 <= l <= r <= number of bits in the binary representation of n.Ex
    5 min read
    Count set bits in a range
    Given a non-negative number n and two values l and r. The problem is to count the number of set bits in the range l to r in the binary representation of n, i.e, to count set bits from the rightmost lth bit to the rightmost rth bit. Constraint: 1 <= l <= r <= number of bits in the binary rep
    6 min read
    Toggle the last m bits
    Given a non-negative number n. The problem is to toggle the last m bits in the binary representation of n. A toggle operation flips a bit from 0 to 1 and a bit from 1 to 0.Constraint: 1 <= m <= n. Examples: Input : n = 21, m = 2 Output : 22 (21)10 = (10101)2 (22)10 = (10110)2 The last two bits
    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