搜索资源列表
combineC
- 用C语言写的文件合并,可以合并两个二进制文件
tentotwo
- 用C写的关于二进制与十进制文件的读写问题-Using C to write documents on reading and writing binary and decimal problems
changename
- 控制台程序,用于拷贝一个二进制文件,并从别外一个C文件中读取某一字符串作为拷贝文件的名称。-copy a binary file and rename it that the name read from the other c file. you can use the console execute it . EG.changename cn
binay-file-operation
- 一个处理二进制文件的c++程序,将数据文件中的道路信息解析出来,并作输出以及排序等-A binary file handling c++ program, the data file path information parsed out, and for output and sorting
readfile
- 对二进制数据文件格式进行重新排序的C程序源码。例如有很多个站的很多时刻的观测数据。本程序将以时间排序的数据变为以站点排序的数据,适应很多工程处理的需要。-Reordering of the binary data file format C program source. For example, the observational data of many stations a lot of time. This procedure will be time to sort the data
c
- 本次试验的主要要点是哈夫曼树的建立过程,这种算法的思路是: 1)依据给定的n个权值{W0,W1,……,Wn-1}构造n棵只有一个根结点的二叉树,这些二叉树组成一个森林F={T0,T1,……,Tn-1}。 2)在森林F中选取两棵根结点的权值最小的二叉树作为左、右子树合并成一棵新的二叉树,这棵新的二叉树的根结点的权值等于其左、右子树根结点的权值之和。这样一来,森林中就减少了一棵树。 3)重复上一步,直到森林F中只有一棵二叉树为止,这棵二叉树便是要得到的哈夫曼树 二叉树建立好之后,通过