數據結構——Huffman-Tree

1 #include<iostream> 2 #include<stdlib.h> 3 using namespace std; 4 5 //- - - 定義哈夫曼樹的結點結構體 - - - 6 typedef struct 7 { 8 int weight; //權值 9 int parent; //父結點 10 int
相關文章
相關標籤/搜索