搜索资源列表
AssociationRuleConvert
- 编码格式转换工具主要用于关联规则挖掘实验数据的预处理,转换训练集中事务编码格式,可在整数型编码、布尔型编码及序数型编码之间转换。-encoding format conversion tools used mainly Mining Association Rules experimental data preprocessing, conversion training would focus Services Coding format, the integer-coding, coding
Huffman 算法的不同实现
- ---- Huffman 算法的不同实现 本目录下的程序用8种不同的方式实现了Huffman编码算法,这8种方式分别是 * huffman_a 使用链表结构生成Huffman树的算法,这是最基本的实现方法,效率最低。 * huffman_b 使用《数据结构》(严蔚敏,吴伟民,1997,C语言版)中给出的算法,将二叉树存放在连续空间里(静态链表),空间的每个结点内仍有左子树、右子树、双亲等指针。 * huffman_c 使用Canonical