構建遍歷哈夫曼樹並計算哈夫曼編碼

構建哈夫曼樹並計算葉子結點的哈夫曼編碼,利用結構體指針數組構建。   #include<iostream> #define length 6 using namespace std; struct Tree{ int data; Tree *left; Tree *right; }; //構造哈夫曼樹 Tree *creatHT(int *arr){ Tree *pArr[length
相關文章
相關標籤/搜索