搜索资源列表

  1. classical-recursion-question

    0下载:
  2. The Chinese promises the tower question is the most classical recursion question, this question has designed this game, alternately plays by the user and automatically demonstrates two parts to be compose
  3. 所属分类:汇编语言

    • 发布日期:2008-10-13
    • 文件大小:12943
    • 提供者:fant
  1. 消除左递归1

    0下载:
  2. 对给定的文法消除左递归。- To the grammar which assigns eliminates the left recursion.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:刘远兴
  1. 消除左递归得到后缀式

    0下载:
  2. 解法:对原文法消除左递归,根据消除左递归后的等价文法建立语法树,而后对此语法树 进行后根遍历,即可得到后缀式.- Solution: Eliminates the left recursion to the original grammar, after equal in value grammar establishment grammar tree which eliminates the left recursion, aft
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-10
    • 文件大小:2048
    • 提供者:刘远兴
  1. classical-recursion-question

    0下载:
  2. The Chinese promises the tower question is the most classical recursion question, this question has designed this game, alternately plays by the user and automatically demonstrates two parts to be compose
  3. 所属分类:汇编语言

    • 发布日期:2024-05-10
    • 文件大小:12288
    • 提供者:fant
  1. LL1.tar

    0下载:
  2. LL1通用语法分析器,有消除左递归,FIRST集合、FOLLOW集合、分析表生成等功能-Universal grammar LL1 parser, has the elimination of left recursion, FIRST collection, FOLLOW collection, analysis and other functions to generate Table
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-10
    • 文件大小:647168
    • 提供者:Wang Xinxi
  1. LL(1)

    0下载:
  2. LL(1)分析 写的语法分析程序,但是不能实现消除左递归,提取公因子-LL (1) analysis of written grammar analysis program, but can not eliminate the left recursion, extracting common factor
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-10
    • 文件大小:194560
    • 提供者:
  1. indirect_recursion

    0下载:
  2. 编译原理消除间接左递归。将结果存于文件中-Compiler to eliminate the principle of indirect left recursion. The results stored in the document
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-10
    • 文件大小:137216
    • 提供者:林臻
  1. bianyi

    0下载:
  2. 编译原理中的实验,消除左递归的实现。c++开发环境-Compilation Principle of the experiment, the realization of the elimination of left recursion. c++ development environment
  3. 所属分类:Windows编程

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:董必锋
  1. Recursion

    0下载:
  2. 这个文档优化迭代性能很有帮助,尤其是对于初学者,是一篇很好的论文,它将递归根据非递归化实现-recursion
  3. 所属分类:技术管理

    • 发布日期:2024-05-10
    • 文件大小:91136
    • 提供者:jinquanli
  1. RecursionOfTree

    0下载:
  2. 这个是关于迭代技术实现的文档,是关于二差遍历树的通用递归实现的设计-recursion
  3. 所属分类:Windows编程

    • 发布日期:2024-05-10
    • 文件大小:128000
    • 提供者:jinquanli
  1. recursion

    0下载:
  2. 递归,是函数实现的一个很重要的环节,很多程序中都或多或少的使用了递归函数。递归的意思就是函数自己调用自己本身,或者在自己函数调用的下级函数中调用自己。 递归之所以能实现,是因为函数的每个执行过程都在栈中有自己的形参和局部变量的拷贝,这些拷贝和函数的其他执行过程毫不相干。这种机制是当代大多数程序设计语言实现子程序结构的基础,是使得递归成为可能。-Recursion, is a function to achieve a very im
  3. 所属分类:matlab例程

    • 发布日期:2024-05-10
    • 文件大小:3072
    • 提供者:sulihao
  1. xiaochuzuodigui

    0下载:
  2. 用于消除左递归的一个用C++语言实现的小程序。里面包含有详细的报告和源代码。-Used to eliminate the left recursion in a C++ language implementation with a small program. Which contains detailed reports and source code.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-10
    • 文件大小:726016
    • 提供者:曾冬梅
  1. factorial(recursion)

    0下载:
  2. factorial recursion written in java copy to netbeans or any ide and it will run
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:zaza
  1. diguixiajiang

    0下载:
  2. 递归下降的基本思想: 为每一个非终结符构造一个子程序,每一个子程序的过程体中按该产生式的候选项分情况展开,遇到终结符直接匹配,而遇到非终结符就调用相应非终结符的子程序。该分析从调用文法开始符号的子程序开始,直到所有非终结符都展开为终结符并得到匹配为止。若分析过程中达到这一步则表明分析成功,否则表明输入中有语法错误。递归下降分析对文法的限制是不能有公共左因子和左递归。由于文法是递归定义的,因此子程序也是递归的,被称为递归下降子程序。
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:WM
  1. leftrecursion

    0下载:
  2. code for left recursion in compilers.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-10
    • 文件大小:2048
    • 提供者:anitha
  1. Recursion

    0下载:
  2. To calculate using recursion, expression sqrt(6+2*sqrt(7+3*sqrt(8+4*sqrt(9+-To calculate using recursion, expression sqrt(6+2*sqrt(7+3*sqrt(8+4*sqrt(9+...))))
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-10
    • 文件大小:240640
    • 提供者:Alex
  1. binary-with-recursion

    0下载:
  2. its about the binary recursion
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-10
    • 文件大小:234496
    • 提供者:Ahmed Dildar
  1. levinson

    0下载:
  2. levinson-durbin recursion
  3. 所属分类:其他小程序

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:abbou djamel
  1. Remove-left-recursion

    0下载:
  2. Compiler tech: Program To Remove Left Recursion From The Given Grammar
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:jack
  1. Binary-tree-traversal-of-recursion

    0下载:
  2. 【二叉树遍历的递归算法实现】 操作:根据提示输入相应数据实现各种功能 函数:菜单函数(menu) 前序建立二叉树(Crt_BinTree) 访问结点(Visit) 前序遍历(Pretraverse) 中序遍历(Intraverse) 后序遍历(Suctraverse) 删除树(Destory) 操作函数(perform)Pretraverse 主函数(main) 说明:结点数据
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-10
    • 文件大小:2048
    • 提供者:
« 12 3 4 5 6 7 8 9 10 ... 26 »

源码中国 www.ymcn.org