equal love

摘要: 整形转格雷码 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)