Implementation for the Huffman Cod in Visual C++. Both, the encoder and the decoder take as input

源代码在线查看: main.cpp

软件大小: 8 K
上传用户: hudun2006
关键词: the Implementation Huffman encoder
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include "Encoder.h"
				#include "Decoder.h"
				
				void main()
				{
					Encoder encoder(L"text1",L"text.out");
					encoder.Encode();
					Decoder decoder(L"text.out",L"text.out.out");
					decoder.Decode();
				}			

相关资源