数据结构1-05-树9 Huffman Codes
摘要:
1 #include<stdio.h> 2 #include<string.h> 3 #define MAXN 1001 4 struct node{ 5 int data,left,right,parent; 6 node(){ 7 data = -1; 8 left = -1; 9 right= 阅读全文
posted @ 2020-04-06 17:46 chenxi16 阅读(120) 评论(0) 推荐(0) 编辑