數據結構試驗(二)————Huffman編碼

代碼 1 #include < stdio.h > 2 #include < malloc.h > 3 #include < string .h > 4 typedef struct HTNode 5 { 6 unsigned int weight; 7 unsigned int parent,lchild,rchild; 8 9 }HTNode, * HuffmanTree; 10 typede
相關文章
相關標籤/搜索