數據結構C語言版赫夫曼樹

/*本身編寫的C語言的赫夫曼樹*/ #include<stdio.h> #include<string.h> #define HUFFSIZE 8 #define TOTALSIZE (2*HUFFSIZE) typedef struct { int weight; int parent; int leftchild; int rightchild; }HuffNode; typede
相關文章
相關標籤/搜索