哈夫曼编码译码内核.cpp
来自「是编译器我花了好几个礼拜才编好的确实难的这是个不错的编译器」· C++ 代码 · 共 20 行
CPP
20 行
// 哈夫曼编码译码内核.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");
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?