搜索资源列表
tool_String2Hex
- lua编写的工具程序,可以将网页中的字符全部转化为16进制的ascii码,然后作为数组输出。-lua utility written, you can page all the characters into a 16 hexadecimal ascii code, and then as an array output.
tt
- 本演示程序中,集合的元素为字符,集合大小为n<20,以字符串的形式输入,以“回车”为结束标志。程序读入一个字符串,统计该字符串中出现的字符及其次数,然后输出结果。运用一个二叉树来保存处理结果,字符串中的每个不同的字符用树描述,每个结点包含4 个域,格式为: 字符 该字符的出现次数 指向ASCII码小于该字符的左子树指针 指向ASCII码大于该字符的右子树指针 因此,程序的功能是依次从输入字符串中取出一个字符,把它们插入到树中 -The demonstra
letter_count
- 统计给定txt ASCII码字符频数和百分比,同时显示其二进制码,输入文件设置路径D:\in.txt 输出路径D:\out.txt可自行修改-Statistics given txt ASCII character code frequency and percentage, at the same time to demonstrate its binary code
06801_30
- 用汇编实现将求和以ASCII码的形式依次显示 即:将每位十六进制数转换成ASCII码的形式从高位到低位依次输出 -With the compilation in order to achieve the sum of the form of ASCII code sequence shows that: for each hexadecimal number will be converted into ASCII code format from a high level to low
read_hdf
- 这个命令行程序可以读取和导出任何HDF格式的文件。用户可以选择输出到显示器、ASCII码文件或是二进制文件。-This is a command line program for reading and dumping any HDF file. The user has the option of listing the output to the screen (default), or to an output ASCII or binary file.
huffman
- 还是自己写的关于huffman加密程序,可以实现把加密的内容转为ASCII码输出到文件-huffman code ,can output coded binary to a file,and convert to a ASCII
c
- 输出ASCII码表;插入法排序;矩阵转化;魔方;随机变量统计硬币的正反面的次数-ASCII code table output insertion sort matrix transformation Cube random variables Statistics coins the number of positive and negative
1
- 本程序由三部分组成:输入员工的信息(年工作时间和工种系数);计算员工年工作量;输出员工年工作量。 在输入员工的信息年工作时间部分,将十进制数ASCII码转换成二进制数。同时由于可能存在小数和,而小数的位数一般为1位,为了便于计算,将每个数都乘10,对于工种系数则由于它要保留到小数点后两位,所以将它们都乘以100,从而去掉小数和,做整数计算。-This procedure consists of three parts: input employee information (annual w
1.1.c
- 编写程序读入一个字母,输出与之对应的ASCII码输入输出都要有相应的提示-Programming, read a letter, the output corresponding ASCII code, input and output must have the appropriate prompt
tool_Hex2String_Home
- lua编写的工具程序,可以将16进制ascii码数组,转化为字符,然后作为web页面输出显示。-utility written in lua can be 16 hexadecimal ascii code array into characters, and then as a web page output.
ascll
- matlab程序:将输入的字符按照ASCII码排序后输出-matlab program: the input characters are sorted according to the ASCII code output
ASCII
- 输出ASCII码及对应的十六进制数,每按一次键盘输出一个ASCII码对应的符号及其十六进制数-Output ASCII code and the corresponding hexadecimal number, each time you press a keyboard output
XUNLIAN
- 编写程序成功实现输出ASCII码为32-127的字符,-Successful programming output ASCII character code is 32-127,
1
- 将七个字符串从小到大按ASCII码排序后输出-sort number
projecttwo
- 8.编写一个函数,实现两个字符串的比较,即自己写一个stringcmp 函数:stringcmp(s1,s2)。如果s1=s2,返回置为0;如果s1≠s2,返回它们二者第一个不同字符的ASCII码差值(如“BOY“与”BAD“第二个字母不同,”O“和”A”之差为79-65=14);如果s1>s2,则输出正值;如s1<s2,则输出负值,在主函数中输入字符串以及输出上述结果。(要求使用指针实现)- Write a function that compares two strings to
ASCII
- 打印ASCII码,每行输出5个ASCII.-Print ASCII code, each line of output 5 ASCII.
ASCII
- 输入一个字符,找出它的前驱字符和后继字符,并按ASCII码值从小到大的顺序输出这3个字符及其对应的ASCII 码(Enter a character, find its predecessor characters and subsequent characters, and according to the ASCII code value from small to large order, the output of these 3 characters and their corresp
base64
- 1.对于任意的二进制文件,可用base64编码,这种编码方法是先将二进制代码划分为一个个24 bit长的单元,然后将每一个24 bit单元划分为4个6 bit组。每一个6 bit组按以下方法转换成ASCII码。6 bit的二进制代码共有64种不同的值,从0到63。用A表示0,用B表示1,等等。26个大写字母排列完毕后。接下去再排26个小写字母,再后面是10个数字,最后用+表示62,而用/表示63。再用两个连在一起的等号”==”和一个等号”=”分别表示最后一组的代码只有8或16比特。回车和换行都忽