倒序的实现unsigned char Reverse(unsigned char uch) { unsigned char retValue = 0; int i; retValue |= (uch & 1); for (i = 1; i < 8; i++) { retValue