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

搜索资源列表

  1. PubLib

    0下载:
  2. CRC算法和Ascii码转BCD算法-CRC algorithm and the Ascii code BCD switch algorithm
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:40268
    • 提供者:
  1. ASCII_str2cod.zip

    0下载:
  2. 用matlab实现ASCII和二进制码的互换,在matlab输入ASCII码字符或字符串即可,源文件里有详细的使用说明,一共有5个文件。,Matlab by ASCII and binary code to achieve the exchange, enter the ASCII code in matlab character or string can be, the source file, there are detailed instructions, a total of five
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:3835
    • 提供者:leo
  1. 可以把任意字符(数字、字母、汉字)转化成ascii码

    0下载:
  2. 可以把任意字符(数字、字母、汉字)转化成ascii码,也可以把ascii码还原 -Can be any character (numbers, letters, Chinese characters) into ascii code ascii code can also restore
  3. 所属分类:数值算法/人工智能

    • 发布日期:2017-03-21
    • 文件大小:20042
    • 提供者:zhjyisee
  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-01
    • 文件大小:815858
    • 提供者:郭峰
  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-03-31
    • 文件大小:9891
    • 提供者:梁超
  1. 7

    0下载:
  2. 一家银行希望采用光学字符识别系统自动读出支票中的账号,组成账号的每个数字都是7段数 位体。一种图象处理软件可以将组成数字的横段和竖段分别转换成ASCII码中的竖线‘|’和下划线 ‘_’。你需要设计一个程序,从扫描转换的结果推测原始的账号,假定: (1)若经扫描转换的某组数字全部保存了正确的数字形式而且满足校验条件,则该组数字就是原 始的账号; (2)9位数中最多只有一位在扫描转换中失去正确的数字形式; (3)扫描转换不会引入额外的数位段。 -A bank wishin
  3. 所属分类:Algorithm

    • 发布日期:2017-04-13
    • 文件大小:2998
    • 提供者:hjx
  1. VCUSEMatlabCODE

    0下载:
  2. 实现了vc和matlab的数据连接和传递,对编程很有利,非常实用方便-ASCII code implements the query and operation of the program is very beneficial, very useful to facilitate
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:28621
    • 提供者:yushu
  1. w_r

    0下载:
  2. 用MATLAB编写的加密代码 先将源文件翻译成ASCII码 在对其进行加密-Encrypted code written with MATLAB source file first translated into ASCII code in its encrypted
  3. 所属分类:matlab

    • 发布日期:2017-04-13
    • 文件大小:3110
    • 提供者:zhaolong
  1. ASCIIcode

    0下载:
  2. 该小程序便于开发时快速得到想要的字符的ASCII码值-When the small program to facilitate the rapid development of the desired character of the ASCII code value
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-08
    • 文件大小:6419
    • 提供者:Yang
  1. asc2HexNum_for_interview

    0下载:
  2. 将一位ASC码转为一位十六进制数,面试中遇到的一个题目,当时想了很久才做出来-put a ascii code to hex code ,for interview
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:632
    • 提供者:hanmin
  1. f_GetFirstLetter

    0下载:
  2. 自动生成拼音简码 1. 此方法基于汉字的国标汉字库区位编码的有效性,不符合此编码的系统此函数无效! // 2. 若汉字串含有非汉字字符,如图形符号或ASCII码,则这些非汉字字符将保持不变.-1 simple code automatically generated phonetic This method is based on Chinese national standard character encoding of the effectiveness of the bit re
  3. 所属分类:STL

    • 发布日期:2017-04-05
    • 文件大小:3451
    • 提供者:汪秋棠
  1. 40

    0下载:
  2. 函数fun的功能是:将s所指字符串中ASCII值为奇数的字符删除,串中剩余字符形成一个新串放在t所指的数组中。 例如,若s所指字符串中的内容为:〞ABCDEFG12345〞,其中字符A的ASCII码值为奇数、…、字符1的ASCII码值也为奇数、…都应当删除,其它依此类推。最后t所指的数组中的内容应是:〞BDF24〞。 注意:部分源程序存在文件PROG1.C中 请勿改动主函数main和其它函数中的任何内容,仅在函数fun的花括号中填入你编写的若干语句 -Function fun f
  3. 所属分类:Data structs

    • 发布日期:2016-01-24
    • 文件大小:4096
    • 提供者:储谢东
  1. comtrade

    1下载:
  2. 本程序包包含两个程序和一个文档。两个程序为二进制与ASCII码之间的转换,文档为comtrade数据格式标准文档。-This package contains two procedures and documentation. Two programs for the conversion between binary and ASCII code, documentation comtrade data format standard document.
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:328910
    • 提供者:zhaofeng
  1. quantification_et_codage

    0下载:
  2. Codage arithmétique est une méthode pour la compression de données lossless. Normalement, une corde des caractères tels que les mots « bonjour là » est représentée en utilisant un nombre fixe de peu par caractère, comme dans ASCII code. Comme
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-03
    • 文件大小:1265
    • 提供者:lamine
  1. quant-mod

    0下载:
  2. Codage arithmétique est une méthode pour la compression de données lossless. Normalement, une corde des caractères tels que les mots « bonjour là » est représentée en utilisant un nombre fixe de peu par caractère, comme dans ASCII code. Comme
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-02
    • 文件大小:1343
    • 提供者:lamine
  1. chat

    0下载:
  2. matlab程序,两台电脑之间通过耳机和麦克风互相实现短句子聊天,耳机发送,麦克风接收,调制为ASK,编码为ASCII码-matlab program, through a headset and microphone between two computers with each other to achieve short sentences chat headset send microphone receiver, modulated to the ASK encoded as the
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:9069
    • 提供者:gaoqing
  1. high_ff

    0下载:
  2. H264 decode in VC 9 include sse3 codec 1. install MinGW 2. set executable files path for VC EX. C:\Program Files\MinGW\bin 3. build path name only in ascii code, can not unicode EX. c:\hi_ff264 or d:\hi_ff264 is good 4. Choice register in
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:
    • 文件大小:421106
    • 提供者:小誠
  1. arithcode

    0下载:
  2. Arithmetic coding is a form of entropy encoding used in lossless data compression. Normally, a string of characters such as the words "hello there" is represented using a fixed number of bits per character, as in the ASCII code. When a string is conv
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-10
    • 文件大小:1425
    • 提供者:bhushan
  1. 2345822

    0下载:
  2. 易语言十六进制与十进制相互转换源码 10与ASCII码对照表-Easy language hexadecimal and decimal conversion source of mutual 10 and ASCII code table
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:222837
    • 提供者:阿斯顿
  1. ASCII-Code-Table-a-Specific

    0下载:
  2. This program print the table of ASCII Code & provide a specific ascii code you need
  3. 所属分类:Algorithm

    • 发布日期:2017-05-04
    • 文件大小:362393
    • 提供者:Mohammad
« 12 »
搜珍网 www.dssz.com