哈夫曼编码压缩和解压缩文件——C++实现
实现效果 压缩前 压缩后 经验证解压缩前与解压缩后文本一致,无出入 文件目录 binaryTreeNode.h linkedBinaryTree.h 源.cpp 代码如下 binaryTreeNode.h #ifndef binaryTreeNode_ #define binaryTreeNode_ #include #include #include using namespace std; template struct binaryTreeNode { int *character; string element; binaryTreeNode *leftChild,
暂无评论