电脑桌面
添加小米粒文库到电脑桌面
安装后可以在桌面快捷访问

Huffman编码C++源代码

Huffman编码C++源代码_第1页
1/9
Huffman编码C++源代码_第2页
2/9
Huffman编码C++源代码_第3页
3/9
Huffman编码完整源代码(VS2010调试通过): ****************************main.CPP***************************** #include"huffman.cpp" int main() { cout << "******************欢迎使用哈夫曼压缩软件****************\n"; cout << "┏━━━━━━━━━━━━┳━━━━━━━━━━━━━┓\n"; cout << "┃ ┃ ┃\n"; cout << "┃ ┃ ┃\n"; cout << "┃ 1:哈夫曼压缩 ┃ 2:哈夫曼解压 ┃\n"; cout << "┃ ┃ ┃\n"; cout << "┃ ┃ ┃\n"; cout << "┣━━━━━━━━━━━━╋━━━━━━━━━━━━━┫\n"; cout << "┃ ┃ ┃\n"; cout << "┃ ┃ ┃\n"; cout << "┃ 3:使用说明 ┃ 4:退出程序 ┃\n"; cout << "┃ ┃ ┃\n"; cout << "┃ ┃ ┃\n"; cout << "┗━━━━━━━━━━━━┻━━━━━━━━━━━━━┛\n"; cout << "**********************sgyy 2011*************************\n"; cout< #include #include #include #include #include #include using namespace std; void input();//功能选择 void compress();//压缩 void uncompress();//解压 void help();//帮助 clock_t start,finish;//记录压缩/解压时间 double time1;//存放压缩和解压时间; struct head { unsigned char b; long count; long parent,lch,rch; char bits[256]; } header[512],tmp; fpos_t filelen( ifstream& file ) { fstream::pos_type cur_pos = file.tellg(); file.seekg( 0L, ios::end ); fstream::pos_type end_pos = file.tellg(); file.seekg( cur_pos, ios::beg ); return end_pos.seekpos(); } int getsize(char file[]) //获取文件大小 { ifstream infile(file); fpos_t len = filelen( infile ); return len/1024; } void input() { int a; cout<<"请选择功能(输入1、2、3或 4)......"; cin>>a; cout<

1、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
3、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。

碎片内容

Huffman编码C++源代码

确认删除?
微信客服
  • 扫码咨询
会员Q群
  • 会员专属群点击这里加入QQ群