我有一些用 C++ 处理的财务数据。我以简单的二进制格式存储它,因为它需要更少的资源并且速度很快,但是我想对文件添加压缩。我猜我将受到 IO 限制,因此压缩在处理速度方面不会花费我太多。
我不知道如何进行压缩,因为我是一名学者而不是真正的程序员。我真的可以用一些手握住这个。
I have my data in a structure like this:
struct TradesBin {
int ttim;
int prc;
int siz;
short int g127;
short int corr;
char cond[2];
char ex[1];
}__attribute__((packed));
我可以将其写入二进制文件,如下所示:
ofstream fout(outfile.c_str(), ios::out | ios::binary);
fout.write((char *) &tbin, sizeof(TradesBin));
其中 tbin 填充了 TradesBin 数据。
我现在如何向这些文件添加压缩?我只模糊地听说过 ZLO、Bzip2、zlib 和 Boost.IOStreams。非常感谢您的指导和建议!
谢谢!