CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - 读 二进制文件

搜索资源列表

  1. BinarySaveOpenFile

    0下载:
  2. 对二进制文件读写,如何打开二进制文件,如何保存到二进制文件-right binary file reading and writing, how to break the binary files and how to preserve binary files
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:4.71kb
    • 提供者:李小明
  1. mp3read

    0下载:
  2. mp3read源码 能将mp3文件读入matlab中,成为二进制代码 文件格式 mp3-mp3read mp3 source documents can be read into Matlab, binary code files into mp3 format
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:4.36kb
    • 提供者:cathy
  1. fbt

    0下载:
  2. 读写绿山数据库文件,并能自动转换成文本和二进制转换的VC代码
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:2.12kb
    • 提供者:wuyongguo
  1. ExtractX.zip

    0下载:
  2. 读二进制文件,对文件进行分析,查看文件结构,Reading binary file, an analysis of the document, view the file structure
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-30
    • 文件大小:12.62kb
    • 提供者:朱海里
  1. huffman

    0下载:
  2. 基于哈夫曼技术压缩和解压。 计算机中任意文件的读与存都是从缓存里面读取 0 、 1 代码转化成, 即文件其是就是二进制的。所以可以把每8位转换成相应的ASCII码。从而用哈夫曼编码, 将等长编码转化成非等长编码。-Huffman-based compression and decompression technology. Arbitrary files on your computer and keep reading it to read from the cache 0, 1 code
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-01
    • 文件大小:9.66kb
    • 提供者:梁超
  1. zhenfengzhuang

    0下载:
  2. 编程实现帧封装。帧封装只是在数据的头和尾上加特定的二进制数据,可以直接用读写二进制文件的方式读出来,然后把该加的头尾写进去就行了。 -Programming frame package. Encapsulated only in the data frame the head and tail add a specific binary data, you can read and write binary files directly read out the way and the
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-31
    • 文件大小:2.03kb
    • 提供者:
  1. tentotwo

    0下载:
  2. 用C写的关于二进制与十进制文件的读写问题-Using C to write documents on reading and writing binary and decimal problems
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:928.71kb
    • 提供者:张新青
  1. RdWrtHgFile

    0下载:
  2. 读写大块的二进制数据文件的源码程序,对二进制文件操作有帮助-Read and write large binary data file source programs, help for binary file operations
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:25.4kb
    • 提供者:chison
  1. netcdf-3.6.2.tar

    2下载:
  2. netcdf 气象数据通用格式 二进制文件读写 可用的源码-netcdf binary file of meteorological data in a common format to read and write the source code available
  3. 所属分类:Algorithm

    • 发布日期:2017-05-19
    • 文件大小:5.07mb
    • 提供者:wang rain
  1. qfile

    0下载:
  2. 以数据结构记录模式,快速读写二进制文件,便于数据存储与检索-write file
  3. 所属分类:Data structs

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

    0下载:
  2. 定义一个 TeacherList 类 可以实现简单的增加教师 可以实现简单的查找教师 可以实现简单的删除教师 要求用二进制文件的读写操作-teach system system system system system system
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1.08kb
    • 提供者:陈磊
  1. DataCheck

    1下载:
  2. 批量读栅格文件转成二进制文件的值信息,适合地理学-Batch read grid file into a binary file the value of information, suitable for geography
  3. 所属分类:matlab

    • 发布日期:2017-03-30
    • 文件大小:1.23kb
    • 提供者:叶辉
  1. matlab-file-operations

    1下载:
  2. matlab文件操作及读txt文件,文件的打开与关闭,二进制文件的读写操作等等,对应的函数-the matlab file operations and read txt file, the opening and closing of files, binary file read and write operations, and so on, the corresponding function
  3. 所属分类:matlab

    • 发布日期:2017-11-12
    • 文件大小:5.04kb
    • 提供者:小晗晗哟
  1. Huffman

    0下载:
  2. Huffman编码与解码(Huffman编码、二叉树) [问题描述] 对一篇英文文章(大于2000个英文字符),统计各字符出现的次数,实现Huffman编码,以及对编码结果的解码。 [基本要求] (1) 输出每个字符出现的次数和编码,其中求最小权值要求用堆实现。 (2) 在Huffman编码后,要将编码表和英文文章编码结果保存到文件中,编码结果必须是二进制形式,即0 1的信息用比特位表示,不能用字符’0’和’1’表示。 (3) 提供读编码文件生成原文件的功能。 -Hu
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:909kb
    • 提供者:简单就好
  1. huffman

    0下载:
  2. 基于赫夫曼树的压缩算法 二进制读入文件,对txt有较好压缩效果,而对MP4、pdf等已经被处理过的文件格式效果不不明显。但是是初学者很好的学习资料。(The compression algorithm based on Huffman tree Binary read into the file, TXT has a better compression effect, and MP4, PDF has been processed file format effect is not not
  3. 所属分类:压缩解压

    • 发布日期:2018-01-08
    • 文件大小:765kb
    • 提供者:絮缘
  1. 读bin

    4下载:
  2. 使用matlab读取bin文件,bin文件是二进制文件,是文件格式binary的缩写。(Reading bin files by using MATLAB)
  3. 所属分类:matlab例程

    • 发布日期:2018-04-20
    • 文件大小:1.46mb
    • 提供者:liziolo
搜珍网 www.dssz.com