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

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

LeetCode | GrayCode

2019-11-14 10:06:38
字體:
來源:轉載
供稿:網友

題目:產生格雷碼

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

代碼:以三位格雷碼為例

(練習一下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");}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 淅川县| 鄂伦春自治旗| 铁岭县| 石渠县| 莫力| 酒泉市| 五寨县| 延庆县| 柘城县| 册亨县| 静海县| 甘肃省| 托克逊县| 南陵县| 高淳县| 廊坊市| 广汉市| 永善县| 富宁县| 吉安市| 安图县| 门源| 江津市| 盘山县| 兴国县| 建昌县| 长垣县| 康定县| 顺平县| 北宁市| 辉南县| 上饶市| 鄂托克旗| 绵竹市| 郸城县| 汾阳市| 芒康县| 健康| 阿城市| 竹溪县| 定安县|