位移位大型二进制文件?
在 C 中对大量二进制数据进行位移位的最佳或推荐方法是什么?我有一个 200K 的二进制文件,我想左移然后右移整个文件。
What is the best or recommended method for bit shifting a large amount of binary data in C? I have a 200K binary file and I want to left, then right shift the entire lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的操作系统可以支持它,请使用内存映射文件。然后做一点移位就会非常非常高效。
有关详细信息,请参阅此答案:内存映射文件的优点是什么?
If your OS can support it use a memory mapped file. Then do a bit shift It'll be very very efficient.
See this answer for more info: What are the advantages of memory-mapped files?