摘要: 阅读全文
posted @ 2013-12-02 11:26 博园少主 阅读(75) 评论(0) 推荐(0) 编辑
摘要: //哈夫曼编码算法 2009-06-05 13:10:22 //分类: C/C++#include #include #include #include #include "string.h"#ifndef __HUFFMAN_H_FE#define __HUFFMAN_H_FE// 哈夫曼树的节点结构typedef struct _huff_node { float weight; // 节点权重 int lchild; // 节点的左孩子 int rchild; // ... 阅读全文
posted @ 2013-12-02 11:02 博园少主 阅读(161) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h"#include "stdlib.h"#define OVERFLOW -1#define ERROR -1#define OK 1typedef char Elemtype;typedef int Status;typedef struct BitNode{ Elemtype data; struct BitNode *lchild,*rchild;}bitnode ,*Bitree;int postion(Elemtype ch,Elemtype a[],int start,int end){ int i; for 阅读全文
posted @ 2013-12-02 11:00 博园少主 阅读(166) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h"#include "stdlib.h"#define OVERFLOW -1#define ERROR -1#define OK 1typedef char Elemtype;typedef int Status;typedef struct BitNode{ Elemtype data; struct BitNode *lchild,*rchild;}bitnode ,*Bitree;int postion(Elemtype ch,Elemtype a[],int start,int end){ int i; for 阅读全文
posted @ 2013-12-02 10:07 博园少主 阅读(571) 评论(0) 推荐(0) 编辑