搜索资源列表
cffx_tcking
- 该词法分析程序用VC++ 6.0编写,以FileOpenDialog打开的*.c或*.cpp文件为语言字集的源程序作为词法分析程序的输入数据,经词法分析程序分析后的结果保存在源文件的同目录的output.txt文件中。在词法分析中,自文件头开始扫描源程序字符,一旦发现符合“单词”定义的源程序字符串时,将它翻译成固定长度的单词内部表示,并查填适当的信息表。经过词法分析后,源程序字符串(源程序的外部表示)被翻译成具有等长信息的单词串(源程序的内部表示),并产生两个表格:常数表和标识符表,它们分别包含
md5_Gen
- 同学编写的小软件,MD5编码器 md5的全称是message-digest algorithm 5。md5将对输入的任意长度的信息进行计算,产生一个128bit长度的大整数,并且它是一个不可逆的变换算法,至于它的原理,有兴趣的朋友可以自己上网查找相关资料。 md5的典型实际应用是对一段message(字节串)产生“指纹”,可以防止文件被人“篡改”。 使用介绍: [choose ]:选择待加密文件; [encrypt]:对选定文件进行加密运算; [ sa
long3
- 该文件是用汇编语言编写的。文件功能是:从键盘输入一个字符串(长度<80),统计其字母、数字和其他字符个数。-the document is a compilation of language. Document function is : keyboard input from a string (length
gyp3
- 输入一个字符串(长度小于等于80)统计其字母,数字和其他字符的个数-importation of a string (length less than 80) Statistical their letters, numbers and other characters Number
递归下降分析程序
- 这里以开始定义的PASCAL语言子集的源程序作为词法分析程序的输入数据。在词法分析中,自文 件头开始扫描源程序字符,一旦发现符合“单词”定义的源程序字符串时,将它翻译成固定长度的单 词内部表示,并查填适当的信息表。经过词法分析后,源程序字符串(源程序的外部表示)被翻译成 具有等长信息的单词串(源程序的内部表示),并产生两个表格:常数表和标识符表,它们分别包含 了源程序中的所有常数和所有标识符。- Here starts the PASCAL language subset source prog
des
- DES是一种分组密码。假定明文m是由0和1组成的长度为64位的符号串,密钥k也是64位的0、1符号串。-DES is a block cipher. M is expressly assumed by 0 and a length of 64 strings of symbols, as well as key k 0 64, a string of symbols.
数p.w的个数(字程序编制)
- : 从BUF1,BUF2为首制的两个字符串分别同基础P,W的个数,并将它们分别存入COUNTP和COUNTW单元 (字符串长度分别为COUNT1,COUNT2).-: BUF1, BUF2 system headed by the same two strings were based P, the number of W, and they were deposited COUNTP and COUNTW unit (length of the string COUNT1, COUNT2).
字符串加CRC校验
- 给任意长度的字符串,加CRC校验码的c语言算法-to arbitrary length of the string, plus CRC algorithm in C Language
LengthCalc
- 压缩文件包含vc工程,编译后的可执行程序可以进行字符串长度计算,支持剪贴版自动操作,可以悬挂及淡入。-compressed file contains vc, the compiled executable programs can calculate the length of the string, cut-and-paste support for the automatic version, flags and fades.
1
- 实现两个数字字符串相加的功能,两个字符串长度可以改变,并将相加结果输出。-Achieve the function of the sum of two numerical strings, two string length can be changed, and the sum of the resulting output.
14-1
- 该运行实例中,令文本串长度为18,随机产生的文本串为asasasqmqmqmypypyp,分布在3个节点上;模式串长度为3,随机产生的模式串为qmq。最后,节点1上得到两个匹配位置,由+表示出来。-To the running instance, so that the text string length of 18 randomly generated text string asasasqmqmqmypypyp distributed in the three nodes pattern
rand_match
- 该运行实例中,令文本串长度为7,随机产生的文本串为0010100,分布在3个节点上;模式串长度为2,随机产生的模式串为01。最后,节点0和1上分别得到一个匹配位置。 -The running instance, so that the text string length of seven randomly generated text string is 0.0101 million, distributed in three nodes the pattern string of le
app_match
- 该运行实例中,令文本串长度为7,随机产生的文本串为asasbsb,分布在3个节点上;模式串长度为2,随机产生的模式串为as。最后,节点0、1和2上分别得到两个近似匹配位置-The running instance, so that the text string length is seven, randomly generated text string asasbsb distributed in the three nodes the pattern string of length 2
csd
- 编写函数catstr(char str1[],char str2[])用于进行两个字符串的连接,编写函数lenstr(char str[])用于统计一个字符串的长度,并在主函数中调用。要求:1.不允许使用strcat()和strlen()字符处理库函数。2.在主函数中,以直接初始化的方式输入两个字符串。调用函数lenstr()计算并返回两个字符串的长度。3.调用函数lenstr()计算并返回连接后的字符串的长度。并输出。-Write function catstr (char str1 [],
length
- 將字串轉成二維陣列 亦可將二維陣列轉為字串-String, turn into a two-dimensional array, also a two-dimensional array to a string
ASM
- 输入一个字符串,统计输出字符串中最常的单调递增子序列的长度-Enter a string, the most common statistical output string length of monotonically increasing subsequence
BF
- BlowFish算法用来加密64Bit长度的字符串。-BlowFish algorithm is used to encrypt the string length 64Bit .
Design-of-the-string-class
- 字符串类的设计与实现,包括使用堆分配存储表示实现字符串的存储,串赋值,串比较,求串长,串连接,求子串,清空子串操作-Design and implementation of the string class, including the use of heap-allocated memory representation for storage string, string assignment, string comparison, seeking string length, string
String-length
- Calculate the string length
my_strlen_
- my_strlen 自己实现的strlen函数(my_strlen my return string length)