搜索资源列表
VC.NET2003实现的递归法实现一键清空
- 递归法实现一键清空,可以清空浏览记录,查找痕迹,网址等,在VC.NET,WINXP下调试通过.-recursive method to achieve a key blank can be emptied View records search marks, websites, in VC.NET. WINXP under debugging through.
hanoi(Titan)
- 汉诺塔解答程序,通过递归实现,好多书上都有这个练习题吧-HANOR answer process, through recursive, many of the books have it Exercises
dgsxzs
- 这个是用c语言编写的一个用递归实现的小程序,程序的功能是实现你输入两个整数m,n(m>n),他输出一连串的数组,其中每个数组都是从这m个数中选择的不同的n个数。找出所有这样的数组。-c is the language used in a recursive procedure to achieve a small, procedural functions of achieving your input two integers m, n (MGT; N), a series of out
GenerateTree
- 一棵很漂亮的树,利用递归实现的。 .net源码。还可以自动生长呢-a very pretty tree, the use of recursive achieve. . Net source. Growth can also automatically!
NQueen非递归
- 算法中的n后问题,用非递归实现的,用一般的c++编译器都可以实现-n algorithm after issue, the non - recursive with the general c compiler can achieve
递归子程序方法
- 这是一个用C++实现的语法制导翻译程序,当输入一个表达式时可以将其转化为相应的四元式-This is a realization of the C syntax translation guided procedure, when an input expression can be translated into the corresponding four yuan -
N皇后问题的回溯法,非递归实现
- 这是N皇后问题的回溯法,非递归实现.此算法对初学者有难度,最好去参考书.这个问题也是回溯法的经典例题,推荐自己去实践.还有,我贴的程序在TC3.0下调试通过.-This the Queen's retroactive law, non - recursive. This algorithm is difficult for beginners, to the best reference books. This issue is also back classic example of
24点算法
- 大一新生的拙作,一种很笨的用递归实现的24点游戏-Freshmen of the apology, a stupid way of using recursive 24 point games
递归分析器
- 实现递归分析器
递归下降分析器/词法分析
- 实现了简单词法分析和语法分析 实现平台eclipse
用VC++编制的一个递归下降分析程序
- 用VC++编制的一个递归下降分析程序,实现对词法分析程序所提供的单词序列的语法检查和结构分析。,With VC++ Prepared a recursive descent parser to achieve lexical analysis procedure provided by the word sequence and structure analysis of grammar checker.
findfile
- delphi历遍递归快速查找文件算法:运用独特的运算算法,和精简的代码实现的历遍递归快速查找文件,是个不可多得实用实例,里面代码全。-delphi calendar quickly locate files all over the recursive algorithm: the use of a unique computing algorithms, and streamlining the code over the recursive implementation of the cal
yufafenxi
- 一个递归下降分析程序,实现了对语法分析程序所提供是单词序列的语法检查和结构,并实现了简单语言进行语法分析.-A recursive descent parser to realize a parser is provided by the word sequence and structure of the grammar checker, and the realization of a simple language syntax analysis.
LL
- 递归下降分析法实现LL(1)文法的语法分析器-Recursive implementation fell analysis LL (1) grammar parser
Recursive_descent_parser
- 通过设计、编制、调试一个递归下降语法分析程序,实现对词法分析程序所提供的单词序列进行语法检查和结构分析,掌握常用的语法分析方法。通过本实验,应达到以下目标: 1、掌握从源程序文件中读取有效字符的方法和产生源程序的内部表示文件的方法。 2、掌握词法分析的实现方法。 3、上机调试编出的词法分析程序。 -By designing, developing, debugging a recursive descent parser, lexical analysis procedure t
101259374RockCarryPL0
- 使用C/C++语言作为实现语言,实现一个简单PL/0语言的编译器。手工编码实现编译器的组成部分。语法分析程序采用递归下降分析法。-The use of C/C++ language as the implementation language, to achieve a simple PL/0 language compiler. Hand-coding part of the compiler. Parser uses recursive descent analysis.
TESTparse
- 以TEST语言为例,实现递归下降语法分析-test
diguixiajiangfengxi
- 此内容用来实现编译原理中的递归下降分析其的源代码。-This content is used to achieve the principle of recursive descent compiler analyze the source code.
2
- 汇编语言,,求N!。子程序为FACT,采用递归实现,结果放在REL存储单元中。。。 。-Assembly language, and seeking N!. Subroutine for the FACT, using recursion, the results on the REL storage unit. . . .
分别利用非尾递归和尾递归实现
- 分别利用非尾递归和尾递归实现第39级台阶问题,要求每一步只能迈上1个或2个台阶。且先迈左脚,然后左右交替,最后一步是迈右脚,也就是说一共要走偶数步。那么,上完39级台阶,有多少种不同的上法呢?