会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
equal love
珵诩媛
https://cdn.jsdelivr.net/gh/Qierven/PicX@master/20211202/c.4ltv1vm3x0c.png
博客园
首页
新随笔
联系
订阅
管理
2017年8月5日
整形与格雷码互转
摘要: 整形转格雷码 x= (x>>1)^x 格雷码转整形(3种方法) static unsigned int GraytoDecimal(unsigned int x) { unsigned int y = x; while(x>>=1) y ^= x; return y; } static unsign
阅读全文
posted @ 2017-08-05 15:51 珵诩媛
阅读(265)
评论(0)
推荐(0)
公告