搜索资源列表
huibianyuyan
- 汇编语言课程设计的程序,包括1 递归方法实现50以下的Fibonacci数 2 字符串查找 3 歌曲管理 4 图书管理 以及设计报告-assembly language curriculum design process, including a recursive method 50 following two Fibonacci search string four three songs management Book Management and the design report
findFile_asm
- 查找制定目录下的文件,使用递归的方法实现!-you develop in the directory, using a recursive method!
huihanoi
- 递归方法实现HANOI塔问题 子程序模块个数不限。要求: 盘子个数可以输入,第一个塔为A,第二个塔为B,第三个塔的名称为C。打印出移动过程。
ACK
- ACK文件,实现递归,实际上好用,用途广
coutbx
- 用汇编语言实现将bx寄存器的内容以10进制形式在显示器上输出使用递归算法,共45条指令程序在masm5.1 link3.60 环境下调试通过-assembly language bx to register with the contents of 10 band forms on the screen output using recursive algorithm, a total of 45 procedures in order masm5.1 link3.60 through debu
RLS.rar
- 实现RLS的matlab程序,是递归最小二乘法的推广和运用,实现RLS的matlab程序,是递归最小二乘法的推广和运用
OOK.rar
- 实现OOK的matlab程序,是递归最小二乘法的推广和运用,实现OOK的matlab程序,是递归最小二乘法的推广和运用
rename
- 实现在指定目录及其子目录中搜索指定扩展名的文件,并更新为新的扩展名的程序reext 程序功能: 1.程序带有三个命令行参数dir、old和new,用法为: reext dir old new 其中Dir是一个全路径名,old和new是文件扩展名,如: Reext c:\ASM\TEST txt doc 2.程序实现的功能为:在路径Dir中搜索文件扩展名为txt的所有文件,如果找到,将其扩展名改为doc,而文件名不变: 3.较高要求,可以搜索指定目录的全部子
456659772ASK
- 实现2ASK的matlab程序,是递归最小二乘法的推广和运用
xuhanshu
- 利用虚函数手段,按照3种不同的计算方法来求出Fibonacci数列的第n项(的具体项值)并输出。具体地说,可通过在基类baseCla及其派生类fib1Cla、fib2Cla和fib3Cla中说明如下的同一个虚函数“virtual double fib(int n) ”,来实现求Fibonacci数列第n项值并返回的3种不同求解方法。例如,可设计并使用已经在第4和第5章的练习中所实现的求解方法:简单变量“数据平移”法、使用数组的实现法以及使用递归函数的实现法。-The use of virtual
diguixiajiangfengxi
- 此内容用来实现编译原理中的递归下降分析其的源代码。-This content is used to achieve the principle of recursive descent compiler analyze the source code.
a2
- 汇编语言实现递归的汉诺塔问题 可直接运行-Assembly language to achieve recursive Towers of Hanoi problem can be directly run
diguixiajiang
- 编译原理语法分析递归下降算法,轻松实现递归下降算法-Compiler theory recursive descent parsing algorithm, recursive descent algorithm easy
yufafenxi
- 编制一个递归下降分析程序,实现对词法分析程序所提供的单词序列的语法检查和结构分析。 利用C语言编制递归下降分析程序,并对简单语言进行语法分析。 -The preparation of a recursive descent parser, lexical analysis program to realize the word provided by the syntax check sequence and structure analysis. Use of C language c
digui
- 这是一个用汇编语言写的用来初步实现递归运算的子程序,用户可以通过这个小程序来发散一下思维,想想该如何写递归-This is a written in assembly language recursive algorithm is used to initially achieve a subroutine, the user can look at this little program to divergent thinking, think about how to write recur
yuyifenxi
- 这是一个简单的包含词法、语法、语义分析的程序:递归下降分析.h 和递 归下降分析.cpp。 实现的基本原理是自顶向下分析,单遍扫描,以语法分析为 核心,调用词法分析,并实现语义分析。-This is a simple include lexical, syntax, semantic analysis of the program: Analysis of recursive descent. H and recursive descent analysis. Cpp. The basi
2
- 汇编语言,,求N!。子程序为FACT,采用递归实现,结果放在REL存储单元中。。。 。-Assembly language, and seeking N!. Subroutine for the FACT, using recursion, the results on the REL storage unit. . . .
Homework-ONE
- 猜价格游戏,一共有五次机会,采用递归调用函数实现。-Guess the price of the game, a total of five opportunities to recursively call the function.
ly
- 编制一个递归下降分析程序,实现对词法分析程序所提供的单词序列的语法检查和结构分析。-Preparation of a recursive descent analytical procedures the word lexical analysis program syntax checking sequence and structure analysis.
全排列汇编
- 读入整数,输出其全排列并按字典序输出,例如3会输出123,132,213,231,312,321。通过递归实现。(Read into the integer, output its full arrangement and output in the dictionary order)