search
HomeBackend DevelopmentC++Decimal equivalent of Gray code and its reverse order

Decimal equivalent of Gray code and its reverse order

Gray code or reflected binary code is a binary representation of a number in which two consecutive numbers differ by only one bit.

For example, the Gray code of 1 is 001, and the Gray code of 2 is 011.

Gray code is often used for error correction because it prevents some data errors that can occur in the usual binary representation when state changes.

Due to its unique properties, Gray code is also helpful in k-map, communication, etc.

prerequisites

Before reading further, please study decimal, binary and Gray code notation.

Problem Statement 1

Given a decimal number n, find the Gray code of the decimal form of the number.

Example

Input: 3
Output: 2

Explanation -> The binary representation of 3 is 011. Its Gray code representation is 010. The decimal representation of 010 is 2.

Thus, the Gray code decimal equivalent of 3 is 2.

Input: 5
Output: 7

Explanation -> The binary representation of 5 is 101. Its Gray code representation is 111 and its decimal representation is 7.

Thus, the Gray code decimal equivalent of 5 is 7.

solution

The compiler understands numbers in binary format.

So, in our program, when we enter a number in decimal format, it is interpreted as binary.

So we just need to convert the number from its binary equivalent to its Gray code.

Binary to Gray code conversion

The binary representation is equal to the leftmost bit of the Gray code. The following bits on the right side are found by XORing consecutive binary bits.

For example -

Consider n = 3. The binary code for 3 is 011.

  • The leftmost bits of binary code and Gray code are equal. Therefore, the first bit from the left in Gray code is 0.

  • For the second digit from the left, XOR the first and second digits from the left in the binary code. 0 XOR 1 = 1.

  • For the third digit from the left, XOR the second and third digits from the left in the binary code. 1 XOR 1 = 0.

So Gray code: 010.

Algorithm: Using bitwise operators

We can obtain the Gray code of number n through the following steps -

  • n Shift right by 1.

  • XOR the right-shifted number with the original n.

Example

The following is a C program that uses bitwise operators to find Gray code from binary code

#include <bits/stdc++.h>
using namespace std;
//This function returns the decimal equivalent
// of the gray code of n.
int dec_equi_of_gray(int n) {
   return n ^ (n >> 1);
}
int main(){
   int n = 3;
   cout<<"The decimal equivalent of the gray code of 3 is: ";
   
   //Function call to convert binary code to gray code
   cout << dec_equi_of_gray(n) << endl;
   return 0;
}

Output

The decimal equivalent of the gray code of 3 is: 2

Problem Statement 2

Given the decimal value of Gray code, find its decimal code value.

Example

Input: 15
Output: 10

Explanation -> Gray code given as input: 1111 (binary value 15).

Now, convert the Gray code to binary code to get 1010 from 1111.

1010 is the binary value of 10. Hence the output.

Input: 10
Output: 12

Explanation -> Gray code given as input: 1010 (binary value 10).

The binary system of Gray code 1010 is 1100. The decimal system of 1100 is 12.

Conversion from Gray code to binary code

The leftmost bit (MSB) of the binary code is the same as the MSB of the Gray code. The following bits are found by XORing the previous indexed binary bit with the current indexed grayscale bit.

Example: Consider Gray code 1111.

  • The MSB of the binary code will be the same as the MSB of the Gray code. Therefore, the MSB will be 1.

  • For the left two bits, check the XOR of the left two bits of the Gray code and the leftmost bit of the binary code. Therefore, 1^1 = 0.

  • Similarly, for the third leftmost digit, 0 ^ 1 = 1.

  • For the fourth leftmost digit, 1 ^ 1 = 0.

So binary code: 1010.

Example

Below is a C program to find binary code from Gray code using bitwise operators

#include <bits/stdc++.h>
using namespace std;

//This function returns the decimal value of 
//the binary code converted from the gray code n.
int gray_to_binary(int n){
   int binary = n;
   while (n > 0){
      n >>= 1;
      binary ^= n;
   }
   return binary;
}
// Driver Code
int main(){
   int n = 15;
   cout<<"The decimal value of the binary code converted from the gray code is: ";
   
   // Function call to convert gray code to binary code
   cout << gray_to_binary(n) << endl;
   
   return 0;
}

Output

The decimal value of the binary code converted from the gray code is: 10

in conclusion

This article solves the problem of finding the Gray code decimal equivalent and its inverse of a given number n. We solved this problem using bitwise operators. C programs are provided for both parts of the problem.

The above is the detailed content of Decimal equivalent of Gray code and its reverse order. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
How does the C   Standard Template Library (STL) work?How does the C Standard Template Library (STL) work?Mar 12, 2025 pm 04:50 PM

This article explains the C Standard Template Library (STL), focusing on its core components: containers, iterators, algorithms, and functors. It details how these interact to enable generic programming, improving code efficiency and readability t

How do I use algorithms from the STL (sort, find, transform, etc.) efficiently?How do I use algorithms from the STL (sort, find, transform, etc.) efficiently?Mar 12, 2025 pm 04:52 PM

This article details efficient STL algorithm usage in C . It emphasizes data structure choice (vectors vs. lists), algorithm complexity analysis (e.g., std::sort vs. std::partial_sort), iterator usage, and parallel execution. Common pitfalls like

How does dynamic dispatch work in C   and how does it affect performance?How does dynamic dispatch work in C and how does it affect performance?Mar 17, 2025 pm 01:08 PM

The article discusses dynamic dispatch in C , its performance costs, and optimization strategies. It highlights scenarios where dynamic dispatch impacts performance and compares it with static dispatch, emphasizing trade-offs between performance and

How do I use ranges in C  20 for more expressive data manipulation?How do I use ranges in C 20 for more expressive data manipulation?Mar 17, 2025 pm 12:58 PM

C 20 ranges enhance data manipulation with expressiveness, composability, and efficiency. They simplify complex transformations and integrate into existing codebases for better performance and maintainability.

How do I handle exceptions effectively in C  ?How do I handle exceptions effectively in C ?Mar 12, 2025 pm 04:56 PM

This article details effective exception handling in C , covering try, catch, and throw mechanics. It emphasizes best practices like RAII, avoiding unnecessary catch blocks, and logging exceptions for robust code. The article also addresses perf

How do I use move semantics in C   to improve performance?How do I use move semantics in C to improve performance?Mar 18, 2025 pm 03:27 PM

The article discusses using move semantics in C to enhance performance by avoiding unnecessary copying. It covers implementing move constructors and assignment operators, using std::move, and identifies key scenarios and pitfalls for effective appl

How do I use rvalue references effectively in C  ?How do I use rvalue references effectively in C ?Mar 18, 2025 pm 03:29 PM

Article discusses effective use of rvalue references in C for move semantics, perfect forwarding, and resource management, highlighting best practices and performance improvements.(159 characters)

How does C  's memory management work, including new, delete, and smart pointers?How does C 's memory management work, including new, delete, and smart pointers?Mar 17, 2025 pm 01:04 PM

C memory management uses new, delete, and smart pointers. The article discusses manual vs. automated management and how smart pointers prevent memory leaks.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.