© 1999-2048 dssz.net 粤ICP备11031372号
[iOS] 数据结构—huffmancode
说明: 霍夫曼编码: #include "stdafx.h" #include using namespace std; #include #include"stdlib.h" #include"string.h" typedef struct { unsigned int weight; unsigned int parent,lchild,rchild; }HTNode,*HuffmanTree; typedef char * * HuffmanCode; void InitHuffmanTree<bluefish625> 上传 | 大小:5kb