摘要: 1 #include 2 #include 3 using namespace std; 4 5 //- - - 定义哈夫曼树的结点结构体 - - - 6 typedef struct 7 { 8 int weight; //权值 9 int parent; //父结点 10 int lchild; 11 ... 阅读全文
posted @ 2018-05-02 20:08 Piccolo_Devil 阅读(228) 评论(0) 推荐(0)