格雷码


// num to gray code
unsigned int binaryToGray(unsigned int num)
{
    return num ^ (num >> 1);
}


你可能感兴趣的:(格雷码)