摘要: #include #include #include typedef int ElemType; typedef struct{ ElemType *elem; int TableLen; }SSTable; void ST_Init(SSTable &ST,int len) { ST.TableLen=len+1; ST.elem=(ElemType *)ma... 阅读全文
posted @ 2019-01-27 09:30 Maggieisxin 阅读(602) 评论(0) 推荐(0)
摘要: #include #include using namespace std; struct huffTree { int parent; int lchild; int rchild; int weight; string flag; }; struct Lowest_Node//第0级节点的字符与频度 { char ch; i... 阅读全文
posted @ 2019-01-27 09:28 Maggieisxin 阅读(1283) 评论(0) 推荐(0)