摘要: 二进制和格雷码转换 二进制转为格雷码 //根据二进制转换成格雷码的法则,可以得到以下的代码: static unsigned int DecimaltoGray(unsigned int x) { return x^(x>>1); } //以上代码实现了unsigned int型数据到格雷码的转换, 阅读全文
posted @ 2024-11-10 15:12 ihuahua1415 阅读(18) 评论(0) 推荐(0) 编辑
*/