算法导论16.3-赫夫曼编码
yunfei 发布于 9年前 (2016-06-29)
#include#includetypedefstruct_nodenode;struct_node{charc;intfreq;node*left;node*right;};typedefstruct_queue{inthead;inttail;node*data;intlen...
阅读(2438)评论(0)赞 (0)
yunfei 发布于 9年前 (2016-06-29)
#include#includetypedefstruct_nodenode;struct_node{charc;intfreq;node*left;node*right;};typedefstruct_queue{inthead;inttail;node*data;intlen...
阅读(2438)评论(0)赞 (0)
yunfei 发布于 9年前 (2016-06-24)
#include#include//voidrecursive_activity_selector(int*s,int*f,intk,intn)//{//intmin=k+1;//while(s[min]...
阅读(776)评论(0)赞 (0)