摘要:
这里随便写了个用java实现的哈夫曼编码的算法(二叉树表示)。 /***@(#)岑村高科*/package cn.javayy.struct;/***定义了一种接口,要进行编码的最小单元类必需实现些接口*@authorboss**createon:下午10:56:592009-5-19*/publicinterface Combinable<T> extends Comparable<T> { T combinate(T a,T b); }================================================================== 阅读全文