是编译器我花了好几个礼拜才编好的确实难的这是个不错的编译器

源代码在线查看: 哈夫曼编码译码内核.cpp

软件大小: 929 K
上传用户: vbkechengsheji
关键词: 编译器
下载地址: 免注册下载 普通下载 VIP

相关代码

				// 哈夫曼编码译码内核.cpp : Defines the entry point for the console application.
				//
				
				#include "stdafx.h"
				#include "HuffmanTree.h"
				
				void main(int argc, char* argv[])
				{
					CHuffmanTree theTree;
					theTree.SetContent("a");
					theTree.Encode();
					theTree.Decode();
					system("pause");
				
				}
				
				
				
				
							

相关资源