摘要: http://blog.chinaunix.net/uid-20760757-id-1872389.html unsigned char reverse8( unsigned char c ) { c = ( c & 0x55 ) << 1 | ( c & 0xAA ) >> 1; c = ( c & 0x33 ) << 2 | ( c & 0xCC ) >> 2... 阅读全文
posted @ 2012-10-09 17:28 10,000 hours coder 阅读(223) 评论(0) 推荐(0) 编辑