CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 写入文件

搜索资源列表

  1. 数据结构的文件读写

    0下载:
  2. 结构数据的读写是指从\"流\"文件中读取数据存入结构,或将结构数据写入\"流\"文件。我们可以用以下两种方法进行结构数据的文件读写-read and write data structure is defined as "the flow" paper read data are stored in the structure or structures to write data "flow" document. We can use the follo
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:7.62kb
    • 提供者:王 艳
  1. f107

    0下载:
  2. 用C++实现大容量数据的快速读入文件,以及快速写入磁盘!-with C + + realization of the large-capacity, rapid data read from documents, and fast into the disk!
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:504.2kb
    • 提供者:贺泉
  1. qjsf

    0下载:
  2. 穷举密码算法 /在许多情况下我们需要穷举组合的算法,比如密码词典。 //这个算法的关键是密码下标进位的问题。 //另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。 //如果要提高写文件的效率,可以使用缓冲区,分批写入。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.42kb
    • 提供者:bodihotboy
  1. taosheng

    1下载:
  2. 1)I:初始化(Initialization)。从终端读入电文,写到tobetrans文件中,统计电文的字符集合和对应的权值集合,建立哈夫曼树,并将哈夫曼树存于文件hfmtree中。 (2)C:编码(Coding )。利用已建好的哈夫曼树(如不在内存,则从文件hfmtree中读入),对文件tobetrans中的正文进行编码,然后将结果存入文件codefile中。 (3)D:译码(Decoding)。利用已建好的哈夫曼树将文件codefile中的代码进行译码,结果存入文件textfile中
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9.38kb
    • 提供者:王涛
  1. Huffman

    0下载:
  2. 根据ascii码文件中各ascii字符出现的频率情况创建Haffman树,再将各字符对应的哈夫曼编码写入文件中,实现文件压缩。-In accordance with ascii code ascii characters in the document the frequency of the situation created Haffman tree, and then the character of the Huffman code corresponding to write docu
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:796.74kb
    • 提供者:郭峰
  1. polyn

    0下载:
  2. C语言中用链表实现两个多项式的相加,相减,相乘,并要求从文件中读出数据和将操作后的数据写入文件中,运用到文件的相关知识。
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:576.09kb
    • 提供者:xulaoban
  1. HuffmanCoding

    0下载:
  2. 用哈夫曼编码实现文件压缩。压缩模块是通过构造哈夫曼树,以文件中字符出现的次数作为权值,得到哈夫曼编码对文件进行压缩。首先扫描文件统计字符出现次数,存入链表中。再将链表中的weight依次赋予权值,然后创建对应的哈夫曼树。最后将生成的哈夫曼树的长度写入文件,再将生成的哈夫曼树写入压缩文件。 解压缩模块是要将压缩文件还原为原文件。先读取一个4字节的哈夫曼树长度,根据读取的长度分配对应大小的哈夫曼树存储空间,然后读取哈夫曼树。-File compression with Huffman Codin
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:150.92kb
    • 提供者:秋月白
  1. Freay

    0下载:
  2. 输出法雷序列。将结果写入文件中保存。采用的新算法,效率高。-The programme can output the Farley sequence。
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:32.19kb
    • 提供者:S.V.Lover
  1. fwen

    0下载:
  2. 1)手工输入几个学生信息,并将结果存入文件f1中 2)找出f1中学生分数最高的那个人,(有可能多个并列第一),将这个人的信息写入文件f2.-1) The manual input of several student information, and will result in the file f1, 2) to identify students with the highest score f1 person, (there may be more tied for first),
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:652byte
    • 提供者:wangjian
  1. biancheng1

    0下载:
  2. 编程实现希尔、快速、堆排序、归并排序算法,并计算每种算法的比较、交换次数、执行时间。要求准备不同数量级(100、1000、10000、20000)的待排数据存入文件;再从文件读入数据,排序;将结果写入文件中。-Programming Hill, quick, heap sort, merge sort algorithm, and calculate for each algorithm, switching frequency, the execution time. Asked to pre
  3. 所属分类:Data structs

    • 发布日期:2017-05-11
    • 文件大小:2mb
    • 提供者:汪奔波
  1. banker

    0下载:
  2. 在c++开发环境下模拟银行家算法的实现,并完善了输出的格式,还将输出一并写入文件中,方便查看结果-Simulation bankers algorithm in the C++ development environment, and improve the output format will be output in conjunction write to a file for easy viewing results
  3. 所属分类:Data structs

    • 发布日期:2017-05-31
    • 文件大小:12.59mb
    • 提供者:罗如君
  1. bitreezonghe

    0下载:
  2. /*综合性试验(排序二叉树) 1.建立一棵排序二叉树(随机产生1000个0~999的数) 2.前、中、反中序遍历 3.统计叶子数、结点数、深度 4.查找、插入、删除 5.求最大、最小值 6.求查找的次数n1,与二分查找作比较(n1>n2,二叉树不均衡) 7.排序算法与中序遍历的效率比较 *8.将上述各步的结果写入文件(result.txt)-/* Test (sort of binary tree) (1) to establish a sort bin
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2.87kb
    • 提供者:向曦
  1. file_rw

    0下载:
  2. c语言实现的文件读写。数据源不断产生数据,能够实现数据不断写入文件。包含设计文档!在dev c++平台上已经验证成功-The C language implementation of the document to read and write. Data source continuously generated data, can achieve data is continuously written into the file. Contains design documents! In
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:11.78kb
    • 提供者:郭帅
  1. LinkListaSqList

    0下载:
  2. 定义一个包含图书信息(书号,书名,定价)的顺序表和链表,使其具有如下功能: (1) 从给定的文件book.txt逐个读入图书信息; (2) 逐个显示图书表中所有图书的相关信息; (3) 统计表中图书个数; (4) 根据书名进行查找,返回相应图书的书号和定价(考虑重名情况); (5) 根据指定的位置可返回相应的图书的全部信息; (6) 给定一本图书相关信息,插入到表中指定的位置,将插入后的结果重新写入文件book.txt; (7) 删除指定位置的图书记录,将删除后的结
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:4.73kb
    • 提供者:吧啦
  1. Mobile-phone-directory

    0下载:
  2. 实现的是类似手机通讯录, 实现以下功能: 1) 通讯录编辑(添加、删除); 2) 按不同的项进行查找; 3) 对已存在的通讯录按不同的项排序; 4) 将通讯录写入文件; 5) 从文件读入通讯录。 -Implementation is similar to the phone contacts, the following functions: 1) Address Book editing (add, delete) 2) Find different
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:158.06kb
    • 提供者:刘颖
  1. employee-information-system--

    0下载:
  2. 用链表实现员工信息系统,通过链表实现 通讯录编辑(添加、删除); 查找; 排序; 将通讯录写入文件; 从文件读入通讯录。-Employee information system, a linked list, address book editor through the list (add, delete) search sort contacts write to a file read from the file into the address book.
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:2.77kb
    • 提供者:刘颖
  1. EditorSystem

    0下载:
  2. 简易行编辑系统。功能包括读入写入文件,显示文件信息,向文件增添内容,删除内容等一系列操作。-Simple line editing system. Features include read write files, display file information, add content to the file, delete the contents of a series of operations.
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:2.82kb
    • 提供者:
  1. e1_p1

    0下载:
  2. 对于给定的整数N,设计算法求出(0,N]区间内所有满足x^2+y^2=z^2的所有正整数三元有序数组,并将结果写入文件中。-For a given integer N, design algorithm and the (0, N] range all meet x ^ 2+ y ^ 2 = z ^ 2 all positive integer ternary orderly array, and writes the result to a file.
  3. 所属分类:Data structs

    • 发布日期:2017-05-25
    • 文件大小:7.48mb
    • 提供者:林宇
  1. file

    0下载:
  2. 将图的数据写入文件并构造邻接矩阵,求出单源点到其他顶点的最短路径(The data of the graph is written into the file and the adjacency matrix is constructed, and the shortest path from the single source point to the other vertex is found)
  3. 所属分类:数据结构

    • 发布日期:2017-12-19
    • 文件大小:2kb
    • 提供者:111黎黎
  1. 文件读写入链表

    0下载:
  2. C++语言编写,可实现基于链表的文件读写入链表,数据结构源程序(C++ language is written to achieve chain table based file reading and writing chain table, data structure source program)
  3. 所属分类:数据结构

    • 发布日期:2018-04-21
    • 文件大小:1kb
    • 提供者:玉玲珑
« 12 »
搜珍网 www.dssz.com