首頁 > 後端開發 > C++ > 主體

將以下內容翻譯為中文:使用遞歸在C程式中將二進位轉換為格雷碼

PHPz
發布: 2023-09-12 17:53:02
轉載
701 人瀏覽過

將以下內容翻譯為中文:使用遞歸在C程式中將二進位轉換為格雷碼

二進位數是只有兩位 0 和 1 的數字。

格雷碼是一種特殊類型的二進制數,其屬性是程式碼的兩個連續數字 em> 的差異不能超過一位。格雷碼的這項特性使其在 K-map、糾錯、通信等方面更加有用。

這使得二進位到格雷碼的轉換成為必要。那麼,讓我們來看看將二進位轉換為格雷碼的演算法 使用遞迴

範例

讓我們以格雷碼程式碼為例

Input : 1001
Output : 1101
登入後複製

演算法

Step 1 : Do with input n :
   Step 1.1 : if n = 0, gray = 0 ;
   Step 1.2 : if the last two bits are opposite,
      gray = 1 + 10*(go to step 1 passing n/10).
   Step 1.3 : if the last two bits are same,
      gray = 10*(go to step 1 passing n/10).
Step 2 : Print gray.
Step 3 : EXIT.
登入後複製

範例

#include <iostream>
using namespace std;
int binaryGrayConversion(int n) {
   if (!n)
      return 0;
   int a = n % 10;
   int b = (n / 10) % 10;
   if ((a && !b) || (!a && b))
      return (1 + 10 * binaryGrayConversion(n / 10));
   return (10 * binaryGrayConversion(n / 10));
}
int main() {
   int binary_number = 100110001;
   cout<<"The binary number is "<<binary_number<<endl;
   cout<<"The gray code conversion is "<<binaryGrayConversion(binary_number);
   return 0;
}
登入後複製

輸出

The binary number is 100110001
The gray code conversion is 110101001
登入後複製

以上是將以下內容翻譯為中文:使用遞歸在C程式中將二進位轉換為格雷碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板