将二进制编码的十进制 (BCD) 解码为无符号整数

发布于 2024-11-09 17:17:21 字数 251 浏览 0 评论 0原文

我的项目中使用的值是用4位二进制编码的十进制(BCD)表示的,它最初存储在字符缓冲区中(例如,由指针const unsigned char *指向)。我想将输入的 BCD 字符流转换为整数。您能告诉我一种有效且快速的方法吗?

数据格式示例和预期结果:

BCD*2; 1001 0111 0110 0101=9765
       "9"  "7"  "6"  "5"

非常感谢!

The value used in my project is expressed with 4-bits binary coded decimals (BCD), which was originally stored in a character buffer (for example, pointed by a pointer const unsigned char *). I want to convert the input BCD char stream to an integer. Would you please show me an efficient and fast way to do that?

Data format example and expected result:

BCD*2; 1001 0111 0110 0101=9765
       "9"  "7"  "6"  "5"

Thank you very much!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

诠释孤独 2024-11-16 17:17:21
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。

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 here specifies the number of bytes in the input, so for the example given by the OP, nybbles would be {0x97, 0x65} and length would be 2.

嗼ふ静 2024-11-16 17:17:21

您可以像这样破译最右边的数字:

const unsigned int bcdDigit = bcdNumber & 0xf;

然后您可以将数字向右移动,以便下一个数字成为最右边的:

bcdNumber >>= 4;

但这会给您提供错误顺序的数字(从右到左)。如果你知道有多少位数字,你当然可以直接提取正确的位。

使用例如 (bcdNumber >> (4 * digitalIndex)) & 0xf; 提取第 digitIndex:th 数字,其中数字 0 是最右边的。

You can decipher the right-most digit like so:

const unsigned int bcdDigit = bcdNumber & 0xf;

then you can shift the number to the right, so that the next digit becomes the rightmost:

bcdNumber >>= 4;

This will give you the digits in the wrong order though (right to left). If you know how many digits you have, you can of course extract the proper bits directly.

Use e.g. (bcdNumber >> (4 * digitIndex)) & 0xf; to extract the digitIndex:th digit, where digit 0 is the rightmost.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文