1 Star 0 Fork 1

炫炫的嗅嗅/GZip文件压缩

forked from pppsh/GZip文件压缩 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
UseForLZ.hpp 549 Bytes
一键复制 编辑 原始数据 按行查看 历史
pppsh 提交于 2022-09-05 20:18 . gzip文件压缩
#pragma once
#include <iostream>
#include <string>
#include <vector>
#include <cassert>
#include <map>
using std::cout;
using std::endl;
using std::cin;
using std::map;
using std::string;
using std::vector;
typedef unsigned int uint;
typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned long long ull;
const int MAX_MATCH = 258;
const int MIN_MATCH = 3;
const ushort WSIZE = 32 * 1024;
string GetFileName(const string& filePath);
string GetFilePostFix(const string& filePath);
void GetLine(FILE* fIn, string& strInfo);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/lianchen5/gzip-file-compression.git
git@gitee.com:lianchen5/gzip-file-compression.git
lianchen5
gzip-file-compression
GZip文件压缩
master

搜索帮助