搜索资源列表
yyjxcxt
- 数据库课程设计,医院药品进销存系统设计说明书
onlycode
- 课程设计: 关于二叉树操作,哈夫曼编码,散列表,宿舍管理,文本编辑的一些代码。没有详细的说明书。之前收集的,有需要的可下载。-Curriculum design: About Binary Tree operation, Huffman coding, hash table, dormitory management, text editor of some code. No detailed instructions. Collected before, there is need
shujujiegoukechengshejishuomingshu
- 这是数据结构课程设计的说明书,发上来供大家参考。-shujujiegoukechengshejishuomingshu
a
- 数据结构课程设计说明书,很好的资料。希望大家喜欢。-Data Structure Course Design Manual, very good information. I hope you like.
sort_explain
- 内部排序算法的分析比较,2009年暑期数据结构课程设计的说明书-Analysis of the internal sorting algorithm compared to the summer 2009 curriculum design data structure specification
OS_driver-and-ticket
- 要求完成的主要任务: (包括课程设计工作量及其技术要求,以及说明书撰写等具体要求) 1.模拟公共汽车司机和售票员开关门及行车操作的同步模型。 2.设计报告内容应说明: ⑴ 需求分析; ⑵ 功能设计(数据结构及模块说明); ⑶ 开发平台及源程序的主要部分; ⑷ 测试用例,运行结果与运行情况分析; ⑸ 自我评价与总结 -Required to complete major tasks: (including course design work and technic
cyuyan
- C语言课程设计,是学生作业管理系统,里面含有完全代码以及任务说明书,是C语言课程设计的不二首选。-C language curriculum design, student work management system, which contains a complete code and mission statement, is a C language curriculum design a prime choice.
huffman
- 基于Huffman编码的文件压缩设计:本次实验将文件中的字符作为结点,每个字符在文件中出现的频率作为结点的权值,采用Huffman算法构造Huffman树,将字符用尽可能短的二进制数位表示(频率越低,二进制数位越长),而不是用8位的ASCII码进行存储,已达到节省存储空间,压缩文件的目的。 程序设计的步骤如下: 1、统计需压缩文件中每个字符出现的频率; 2、将每个字符出现的频率作为叶子结点构建Huffman树,然后将树中结点引向其左孩子的分支标“0”,引向其右孩子的分支标“1”;