我的项目中使用的值用4位二进制编码的小数(BCD)表示,它最初存储在字符缓冲区中(例如,由指针const unsigned char *指向).我想将输入BCD字符流转换为整数.你能告诉我一个有效而快速的方法吗?
数据格式示例和预期结果:
BCD*2; 1001 0111 0110 0101=9765 "9" "7" "6" "5"
非常感谢你!
解决方法
unsigned int lulz(unsigned char const* nybbles,size_t length) { unsigned int result(0); while (length--) { result = result * 100 + (*nybbles >> 4) * 10 + (*nybbles & 15); ++nybbles; } return result; }
这里的length指定输入中的字节数,因此对于OP给出的示例,nybbles将为{0x97,0x65},长度为2.