如何找到所有“1” unsigned char bitmapRep[8192] 中的位?
给定一个 unsigned char bitmapRep[8192],如何有效地找出所有“1”位的位置?谢谢。
Given a unsigned char bitmapRep[8192], how to efficiently find out all "1" bits' positions? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你所说的“找到”是什么意思?
这似乎是一个自作聪明的答案,但我是非常认真的:你已经已经找到了它们。有一个完美的映射准确地描述了所有 1 位的位置,并且在相应的位置设置了一个位。
What do you mean by "find"?
This may seem like a smart-ass answer, but I'm perfectly serious: you already have found them. There's a perfect map describing exactly where all the 1 bits are found, and it has a bit set in the corresponding positions.
家庭作业?
提示 - 每个字节的查找表
Homework?
hint - Lookup table for each byte