格雷码

梦想游戏人
目录:
algorithm
// num to gray codeunsigned int binaryToGray(unsigned int num){    return num ^ (num >> 1);}
Scroll Up