加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myHuff.cpp 819 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ankel 提交于 2020-08-20 21:55 . 完善程序收尾工作
#include "myHuff.h"
#include "count.cpp"
#include "unzip.cpp"
using namespace std;
int main(int argc, char *argv[])
{
if(argc==3){
char old_file[255];
char new_file[255];
strcpy(old_file, argv[1]);
strcpy(new_file, argv[2]);
traversal(old_file); //遍历文件,生成节点
tree(); //构建huffmanTree
code();
huffwrite(new_file, old_file);
return 0;
}
if(argc==4 && strcmp(argv[1],"-x") == 0){
char old_file[255];
char new_file[255];
strcpy(old_file, argv[2]);
strcpy(new_file, argv[3]);
unzip(old_file,new_file);
return 0;
}
else{
cout << "Wrong Formant!" <<endl;
return 0;
}
cout << "Hello, World!\n";
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化