




已阅读5页,还剩7页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
吉首大学信息科学与工程学院课程设计报告书课 程 数据结构课程设计 课 题: 赫夫曼树的建立 专 业: 计算机科学与技术 年 级: 2012级 指导教师: 基地指导教师: 2014年 6 月一、项目介绍与设计目的 任务:按给定的数据建立赫夫曼树要求:可以建立函数输入二叉树,并输出其赫夫曼树目的:了解和认识赫夫曼树,进一步学习数据结构,提高编程能力二、设计方案1项目环境要求电脑、 Visual C+ 6.02项目功能模块3 设计内容HuffmanTree.h文件:#include #include #include using namespace std;class HTNode friend class MyHuffmanTree;public: char charater;/元素值(字符) int weight;/权值(频率) string code;/Huffman编码 HTNode *left;/左孩子 HTNode *right;/右孩子 HTNode (char c=0, int w=0) charater=c; weight=w; left=right=NULL; bool operator (HTNode & target) if( weight target.weight ) return true; else return false; /operator bool operator (HTNode * target) if( weight target-weight ) return true; else return false; friend ostream & operator (ostream &cout, HTNode * target) coutchar: charatertweight: weight coderight & NULL=target-left) coutcharater weight codecode=;/root的Huffman编码 stack aStack;/存储未访问元素的栈 HTNode * temp =root; aStack.push(NULL);/栈底监视哨 while(temp) if(NULL != temp-right ) temp-right-code=temp-code + 1; aStack.push(temp-right); if( NULL != temp-left ) temp-left-code=temp-code + 0; temp=temp-left; else/左子树访问完毕,转向访问右子树 temp=aStack.top(); aStack.pop(); /while /Huffman编码函数public: MyHuffmanTree(HTNode * r) root=r; HuffmanCode(root); /构造函数 MyHuffmanTree()DeleteTree(root); /析构函数 void DeleteTree(HTNode *root) if(NULL!=root) DeleteTree(root-left); DeleteTree(root-right); delete root; /销毁树函数 void InOrder(HTNode * root) if(NULL!=root) InOrder(root-left); visit(root); InOrder(root-right); /中序周游 HTNode * Root() return root;/返回跟结点函数main文件:#include HuffmanTree.h#include MinHeap.h#include #include #include using namespace std;int main () int f128=0;/频率表 char c;/读入字符 /打开文件 ifstream fin(input.txt); if(!fin) coutc; fc+; MinHeap heap(128); HTNode * p;/建堆用指针 HTNode *first , * second , *pa; for(int i=0;iweight+second-weight); pa-left=first; pa-right=second; heap.insert(pa); pa=heap.min(); heap.remove(0); MyHuffmanTree mht(pa); mht.InOrder(mht.Root(); return 0;最小堆MinHeap.h文件:#include using namespace std;template class MinHeapprivate: T * heapArray ; /存放堆数据的数组 int CurrentSize ; /当前堆中的元素数目 int MaxSize ; /最大元素数目 void swap( int pos_x, int pos_y ) /交换位置xy的元素的函数 if( pos_x0 | pos_y0 ) return ; T temp ; temp=heapArraypos_x; heapArraypos_x=heapArraypos_y; heapArraypos_y=temp; public: MinHeap( const int size ) /构造函数,size为堆的最大元素数目 if( size= CurrentSize/2) & ( pos CurrentSize ); int leftchild( int pos ) /返回左孩子位置的函数 return ( 2 * pos + 1 ); int rightchild( int pos )/返回右孩子位置的函数 return ( 2 * pos + 2 ); int Parent( int pos ) /返回父结点位置的函数 return ( (pos-1) / 2 ); int Pos( T value ) /找出值为value的元素在堆中位置的函数 for(int i=0; iMaxSize; i+) if( heapArrayi = value ) return i ; return -1 ;/pos bool insert( const T & newNode )/向堆中插入新元素newNode /判断堆是否已满 if ( CurrentSize = MaxSize )/堆已满 cout堆已满endl; return false; /堆未满 heapArrayCurrentSize= newNode ;/新元素newNode放到堆的末尾 SiftUp( CurrentSize ); /向上调整 CurrentSize + ; /堆的当前元素数加1 return true ; /insert bool remove( int pos)/删除给定下标的元素 /判断下标是否越界 if ( (pos = CurrentSize) ) return false ; /下标未越界 heapArraypos=heapArray-CurrentSize;/用最后的元素值代替被删除的元素 if( pos = 0 ) SiftDown(pos); if ( heapArrayParent(pos) heapArraypos ) SiftUp(pos); else SiftDown(pos); return true ; /remove T & min() /返回最小值元素 return heapArray0 ; void SiftUp( int pos ) /从pos开始向上调整 int temppos=pos; T temp = heapArraytemppos; while( (temppos0) & (heapArrayParent(temppos) temp) ) heapArraytemppos=heapArrayParent(temppos); temppos=Parent(temppos); heapArraytemppos=temp ; /SiftUp void SiftDown ( int pos )/从pos开始向下调整 int i = pos ; /标识父结点 int j = leftchild(i);/用于记录关键值较小的子结点 T temp = heapArrayi;/记录父结点元素值 while( j CurrentSize) if( (j heapArrayj+1) )/若有右子结点且小于左子结点 j+; /j指向小的右子结点 if ( temp heapArrayj )/若父结点的值大于子结点的值则交换 heapArrayi=heapArrayj; i=j; j=leftchild(j); /if else break ; /父结点=子结点满足堆序跳出 /while heapArrayi=temp; /SiftDown void display()/显示堆中内容 int i ; for(i=0; iCurrentSize; i+) coutheapArrayi; /display T & RemoveMin() if(CurrentSize=0) cout 1) SiftDown(0); return heapArrayCurrentSize; /else /RemoveMin int GetCurrentSize() return CurrentSize ;程序运行结果: 输入:2 4 6 8 10 权:1 3 5 7 9输出:三、总结和分析 经过这次程序设计,我深刻的认识到,编写的程序不但要拿来使用,还要给别人查看,以便代码的维护。所以代码编写的风格尽量规范,清晰。代码较为冗余,可读性较差,可以多添加一些提示语句以及注释。 在这次课程设计中我又进一步地了解了
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- GB/T 46002-2005动物饲料大豆及其加工产品中胰蛋白酶抑制剂活性测定
- 2025年农业博物馆面试技巧与模拟题库
- 2025年护理学基础面试技巧与模拟题集
- 2025年彩票企划笔试预测题库
- 草坪园艺技术使用中的常见问题解答
- 职业培训合作协议的范本
- 2025年公务员遴选交通政策模拟题库
- 2025年企业财务规划师资格考试试卷及答案解析
- 2025年农林环保监测师专业知识评估考试试题及答案解析
- 2025年教育培训行业教师资格考试试卷及答案解析
- DB3502T 090-2022 居家养老紧急事件应急助援规范
- 合作共享协议书
- 投标财务状况承诺书范本
- 2024年全国中学生数学奥林匹克竞赛甘肃赛区预赛试题
- 2024年度炎症性肠病(IBD)课件
- 现代智力七巧板课件
- 孕妇孕期保健的重要性与方法
- 摄影技术新闻摄影培训
- 2024年2024年2024年全国初中数学联合竞赛试题及参考答案
- 《红楼梦》中的家族兴衰与社会变革
- 济公(粤语版)全剧本
评论
0/150
提交评论