搜索资源列表
long3
- 该文件是用汇编语言编写的。文件功能是:从键盘输入一个字符串(长度<80),统计其字母、数字和其他字符个数。-the document is a compilation of language. Document function is : keyboard input from a string (length
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).
xunhuan
- (1)编写分支结构.asm文件实现: 键盘输入以‘$’为结束符的长度不超过80的字符串(含字母、数字、其他字符),对其中的非数字字符计数。统计结果用十六进制数屏幕显示。 (2)编写分支结构.asm文件实现: 定义一串以‘$’结束的字符串,给每一个字符均加上偶校验位。统计有多少个字符因含有奇数个1而加上了校验位,结果存入N单元。 -(1) the preparation of branch structure. Asm file to achieve: keyboard input in
qiuzifuchangdu
- 写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度-Writing a function, and the length of a string, in the main function in the input string and output its length
poplist
- 字符串转换事例,摆脱masm的人为字符串长度限制-This program shows a useful trick to get around an artificial limit that MASM imposes on the length of string data. It loads a long string that is delimited by a single zero and terminated by two zeros, reads each entry
1
- 实现两个数字字符串相加的功能,两个字符串长度可以改变,并将相加结果输出。-Achieve the function of the sum of two numerical strings, two string length can be changed, and the sum of the resulting output.
jiaoxuehuibian
- 这是我帮我同学做的课程设计。 下面我写上这次设计的需求分析: [问题描述] 大学的每个专业都要制定教学计划。假设任何专业都有固定的学习年限,每学年含两学 期,每学期的时间长度和学分上限值均相等,每个专业开设的课程都是确定的,而且课程在 开设时间的安排必须满足先修关系。每门课程有哪些先修课程是确定的,可以有任意多门, 也可以没有。每门课恰好占一个学期。试在这样的前提下设计一个教学计划编制程序。 [基本要求] (1)输入参数包括:学期总数,一学期的学分上限,每门课
Burglar
- Burglar 病毒,因病毒中有字符串 Grave,又称 Grave 病毒,病毒长度为 1150 字节, 所以有的地方又称它为 1150 病毒,它感染DOS的 .EXE 文件,不感染 Windows 的可执行文件 当病毒在内存中的时候,UMB 将无法找到,在运行 Windows 95 时经常引起死机。-Burglar viruses, because viruses that have the string Grave, also known as the Grave virus, t
project3
- 这是我在大学本科汇编课程的一个小程序,MIPS语言,功能也很简单,程序会要求用户输入一个20个character长度的字符串,然后用了三种不同的算法来判断此字符串是否是回文序列,然后给予用户feedback-This is my compilation of courses at the undergraduate a small program, MIPS language functions are very simple, the program will ask the user to
main
- 找出最长的回文子串,输出的第一行为找到的最长的回文字符串的长度。后面的行应该包括该字符串,字符串两边多余的空格和标点都不需要输出,但字符串中的空格、标点和换行则需要按照原样输出。-To find the longest palindrome substring of the first acts of the output to find the longest palindrome length of the string. Back row should include extra spac
csd
- 编写函数catstr(char str1[],char str2[])用于进行两个字符串的连接,编写函数lenstr(char str[])用于统计一个字符串的长度,并在主函数中调用。要求:1.不允许使用strcat()和strlen()字符处理库函数。2.在主函数中,以直接初始化的方式输入两个字符串。调用函数lenstr()计算并返回两个字符串的长度。3.调用函数lenstr()计算并返回连接后的字符串的长度。并输出。-Write function catstr (char str1 [],
search-proc
- Search proc: 在一个给定字符串main中查找子字符串sub,其中两字符串的长度分别保存在main[1]和sub[1]中。 若查找成功,则返回子字符串sub在父字符串main中的位置pos(从0开始); 反之,若查找失败,则返回FFH,即-1.-Search proc: Find a given string main substring sub, two of the length of the string stored in main [1] and sub [1].
StrRp
- 一个简单的汇编源程序:(确定一个B串中多处存在A串的例子),用一个C串去替换A串(A与C长度不一样,取代所有相同的串),替换后的结果在显示器上显示。-Assembler source: (determining a B string Various examples of the A string), (A and C, the length is not the same, and to replace all of the same string) to replace the A stri
teststring
- 将字符串合并的时候要注意中间的空格,否则可能在合并时出错。我调试了好久才发现-combine the string,essential to focus the length of string
ASM
- 输入一个字符串,统计输出字符串中最常的单调递增子序列的长度-Enter a string, the most common statistical output string length of monotonically increasing subsequence
longist
- 在主函数中输入一个字符串main_str,调用函数将main_str中最长的单词取出放入sub_str中(要求被调函数参数为main_str和sub_str),在主函数中输出结果字符串sub_str。假定输入的字符串main_str中单词以一个或多个空格分开。若有多个单词长度相同,输出最后一个。 -Enter in the main function of a string main_str, calling function will main_str the longest word o
encode
- 在数据加密和数据压缩中常需要对特殊的字符串进行编码。给定的字母表A 由26 个小 写英文字母组成A={a,b,…,z}。该字母表产生的升序字符串是指字符串中字母按照从左到 右出现的次序与字母在字母表中出现的次序相同,且每个字符最多出现1 次。例如, a,b,ab,bc,xyz 等字符串都是升序字符串。对于任意长度不超过6 的升序字符串,迅速计算出它在上述字典中的编码。-In data encryption and data compression is often the need for sp
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