8 个字节的按位转置

发布于 2024-08-21 22:14:09 字数 329 浏览 2 评论 0原文

我正在寻找一种有效的 C 算法来按位转置 8 字节的数据。我的意思是,如果我有这样的 8 个字节:

00011100
00111000
00000001
00000000
11000000
00000000
11111111
01010101

我想获得以下 8 个字节:

00001010
00001011
01000010
11000011
11000010
10000011
00000010
00100011

由于我想在嵌入式平台上使用它,所以它应该尽可能快:-)

所有想法都很多赞赏!

I am looking for an efficient algorithm in C to bitwise-transpose 8 bytes of data. What I mean with this is that if I have 8 bytes like this:

00011100
00111000
00000001
00000000
11000000
00000000
11111111
01010101

I want to get the following 8 bytes:

00001010
00001011
01000010
11000011
11000010
10000011
00000010
00100011

And since I want to use this on an embedded platform, it should be as fast as possible :-)

All ideas are much appreciated!

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

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

发布评论

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

评论(1

屋檐 2024-08-28 22:14:09

请参阅

See Hacker's Delight, Chapter 7-3.

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