C 或 C++ 中的文本压缩
如果我必须用 C 或 C++ 进行压缩文本总是给我带来麻烦,因为与 python 和其他语言不同,默认情况下没有可用的内置库,所以我想知道这些语言中的文本压缩应遵循什么方法。
举个例子,考虑这个文本,现在我应该使用哪种算法或方法来压缩这个文本并获得一个非常好的结果。简短的可能解决方案?
Compression text always gives me troubles if I have to do in C or C++ as there no inbuilt library is available by default unlike python and other languages,So I want to know what is the approach to be followed for text compression in these languages.
For an example consider this text,now which algorithm or method I should be used to compress this text and to get a very short possibly solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
去下载zlib。使用放气功能。
Go download zlib. Use the deflate functions.