CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - recursive algorithm analysis

搜索资源列表

  1. 递归下降分析法(编译原理).tex

    0下载:
  2. 递归下降分析法 是编译原理课程设计的源代码 可用来研究递归下降算法-decline recursive analysis is to compile the curriculum design principle source code can be used to study decline recursive algorithm
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:916byte
    • 提供者:刘飘
  1. shizhifenxi

    0下载:
  2. 数值分析算法描述与习题解答,由清华大学徐士良教书,用C编写的各种数学算法。比如:托伯利兹型线性代数方程组的递推算法,全选主元高斯消去法解复系数线形代数方程组,复矩阵求逆的全选主元高斯-约当法,等;-numerical analysis algorithm descr iption and answer the questions from Qinghua University XU Shi-liang, teaching C prepared by the various mathematica
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:86.19kb
    • 提供者:qinzuoyi
  1. file_scaner

    0下载:
  2. 扫描器类的设计1. 构造算术表达式的四元式翻译文法 2. 设计算术表达式的递归下降子程序分析算法 3. 设计算术表达的四元式生成算法 4. 实现代码并调试运行 -scanner category of a design. Construction arithmetic expressions four yuan grammar-translation 2. Design arithmetic expression analysis subroutine decline recur
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:6.26kb
    • 提供者:送水的
  1. 语法分析之左递归实验

    0下载:
  2. 此为编译原理实验报告 学习消除文法左递规算法,了解消除文法左递规在语法分析中的作用 内含 设计算法 目的 源码 等等.... 算法:消除左递归算法为: (1)把文法G的所有非终结符按任一种顺序排列成P1,P2,…Pn 按此顺序执行 (2)FOR i:=1 TO n DO BEGIN FOR j:=1 DO 把形如Pi→Pjγ的规则改写成 Pi→δ1γ δ2γ … δkγ。其中Pj→δ1 δ2 … δk是关于Pj的所有规则; 消除关于Pi规则的直接左递归性 END (3)化简由(2)所得的文法。即
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:43.11kb
    • 提供者:何浩
  1. ziduanhe

    0下载:
  2. 用蛮力,分治,动态递归算法设计最大子段和问题的算法及其分析-Use brute force, sub-rule, dynamic recursive algorithm design and problems in the largest sub-segment algorithm and its analysis of
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:1.01mb
    • 提供者:hehuiling
  1. diguixiajiang

    0下载:
  2. 这是我的编译课程设计,实现的是递归下降分析算法,你们可以下下来参考一下-This is my compiler curriculum design, implementation analysis of the decline are recursive algorithm, you can look down under
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-21
    • 文件大小:1.88mb
    • 提供者:郎郎
  1. dynamicprogramming

    0下载:
  2. 算法分析中的实例,利用递归的思想解决动态规划问题-Examples of algorithm analysis, recursive thinking to solve the problem of dynamic programming
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2.09kb
    • 提供者:查春晨
  1. strext

    0下载:
  2. 字符串扩展问题的递归算法及动态规划算法的详细分析及实现-implementation and detailed analysis of recursive algorithm and dynamic programming algorithm of string expansion issue
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:4.38kb
    • 提供者:leen
  1. 12gg

    0下载:
  2. 一、 pl0文法:适用于递归下降分析算法-A, pl0 grammar: for analysis declined recursive algorithm
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:60.57kb
    • 提供者:zhangyi
  1. path

    0下载:
  2. 探询路径 问题的提出:编写程序,输出下图的0至n(1<=n&&n>=9)的所有路径。 该题的核心是找出满足一定规律的递归条件,从而设计出递归算法。仔细分析不难发现规律: 0至n的路径由0至n-1的路径,加上n-1至n的路径,以及0至n-2的路径,加上n-2至n的路径这 两部分组成。即欲找0至n的路径,可以转化为找0至n-1及0至n-2的路径,这就可建立递归。-Explore the path Of the problem: the preparation
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:5.66kb
    • 提供者:颜昌文
  1. horsego

    0下载:
  2. 算法分析中的棋盘跳马问题,采用递归法求解,包含思路和源码-Algorithm analysis of the issue of board vault, using the recursive method, including the ideas and source code
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:9.03kb
    • 提供者:
  1. dituzhuose

    0下载:
  2. 算法分析中的地图多种颜色着色问题,采用递归思想-Algorithm analysis of multi-color map coloring problem, the use of recursive thinking
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:584byte
    • 提供者:
  1. Hamoi

    0下载:
  2. 采用递归思想解决汉诺塔问题:详细的步骤分析,算法分析和实现。采用C++语言,可加深对递归函数的理解和应用。-Using the recursive thinking to solve Towers of Hanoi problem: detailed steps analysis, algorithm analysis and implementation. Using C++ language, can deepen the understanding and application of r
  3. 所属分类:Algorithm

    • 发布日期:2017-03-24
    • 文件大小:20.47kb
    • 提供者:白兰鸽
  1. chilun

    0下载:
  2. 算法分析中的递归法齿轮问题,VC++写的C源代码-The recursive algorithm analysis method gear problem, VC++ source code written in C
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:196.88kb
    • 提供者:感飞
  1. map

    0下载:
  2. 使用vc++实现算法分析与设计中n图着色的的实现,使用递归算法,比较简单-Using vc++ algorithm analysis and design of the implementation of n graph coloring, using a recursive algorithm, a relatively simple
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:593byte
    • 提供者:jidean
  1. 15

    0下载:
  2. 算法分析与设计中用递归算法求汉诺塔的问题-Algorithm Analysis and Design of recursive algorithm to solve the Hanoi Tower problem
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:198.99kb
    • 提供者:11
  1. recursive-algorithm

    0下载:
  2. 用算法分析中递归与分治算法实现的,最长公共子序列算法,编程环境为vc-Analysis using the recursive algorithm and the divide and conquer algorithm, the programming environment for the vc++
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:12.93kb
    • 提供者:李雪薇
  1. hang-luo-ta

    0下载:
  2. 汗罗塔的算法,有递归和非递归的算法分析,程序可以自己看看!-Khan Rota' s algorithm, recursive and non recursive algorithm analysis, the program can see for yourself!
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:2.23kb
    • 提供者:吴振宇
  1. Algorithm-analysis-and-design

    0下载:
  2. 计算机实验室 内容: 1、分治法,maxmin算法 2、动态规划,矩阵连乘 3、贪心法, 1)背包问题,2)装载问题 4、回溯法,N皇后问题的循环结构算法和递归结构算法。-Computer laboratory content: 1, partition method, maxmin algorithm 2, the dynamic planning, LianCheng matrix 3, greedy method, 1) knapsack probl
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:4.13kb
    • 提供者:王越瑾
  1. The-algorithm-analysis-and-design

    0下载:
  2. 研究生上课所用的算法分析与设计相关文档PPT,分八个章节对算法进行详细介绍: 第1章 算法引论 第2章 递归与分治策略 第3章 动态规划 第4章 贪心算法 第5章 回溯法 第6章 分支限界法 第7章 概率算法 第8章 NP完全性理论 -Graduate classes used in algorithm analysis and design documents the PPT is divided into eight chapters on the alg
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1.95mb
    • 提供者:独角之灵
« 12 3 4 »
搜珍网 www.dssz.com