国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

LeetCode | GrayCode

2019-11-14 09:14:04
字體:
來源:轉載
供稿:網友

題目:產生格雷碼

思路:先轉成二進制,再逐位與前一位異或,最高位不用變

代碼:以三位格雷碼為例

(練習一下struct的使用,用數組存各個struct的指針,每個格雷碼使用一個struct)

#include <stdio.h>#include <stdlib.h>#include <math.h>int bnry[10]={0};char* change(char*);// num of bits, current bit, name of int arrayint* toBinary(int, int, int*);int* toGray(int,int, int*);// name of int array, num of bitsvoid PRintIntArray(int*,int);struct earlGray { int ch[100];};int main(int argc, const char * argv[]) { // insert code here... //char ch[]="sf adfaf dffd"; //printf("%s/n",ch); int numOfBits=3; int i=0; int totalNum=8; struct earlGray* p[8]; while(i<totalNum){ p[i]=(struct earlGray*)malloc(sizeof(struct earlGray)); toBinary(numOfBits,i,p[i]->ch); // printIntArray(p[i]->ch, numOfBits); toGray(numOfBits,i,p[i]->ch); printIntArray(p[i]->ch, numOfBits); i++; } system("pause"); return 0;}char* change(char* ch){ ch[0]='0'; ch[1]='1'; return ch;}//No need to return, since it revise ch dierectly, not the copy.int* toBinary(int n,int current, int* ch ){//to binary int j,l; j=l=0; do { if(current>=0){ j=current%2; current=current/2; ch[n-1]=j; }else if (current==0) { ch[n-1]=0; } n--; } while (n!=0); return ch;}int* toGray(int n,int current, int* ch ){ while(n>1){ if (ch[n-1]==ch[n-2]) { ch[n-1]=0; }else { ch[n-1]=1; } n--; } return ch;}void printIntArray(int* ch,int n){ int k=0; while(k<n){ printf("%d",ch[k]); k++; } printf("/n");}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 青海省| 裕民县| 永定县| 舟曲县| 浦城县| 鸡东县| 炎陵县| 阳山县| 徐闻县| 南丰县| 桃园市| 灵山县| 喀喇沁旗| 崇义县| 沂源县| 潞城市| 湖口县| 岳普湖县| 深泽县| 青铜峡市| 冷水江市| 修武县| 清流县| 阳新县| 普格县| 隆子县| 孝昌县| 开封县| 三河市| 平阳县| 山阳县| 东兰县| 临高县| 江源县| 鸡泽县| 巴林左旗| 泌阳县| 绿春县| 冕宁县| 朔州市| 任丘市|