搜索资源列表
-
0下载:
递归下降分析法 是编译原理课程设计的源代码 可用来研究递归下降算法-decline recursive analysis is to compile the curriculum design principle source code can be used to study decline recursive algorithm
-
-
0下载:
数值分析算法描述与习题解答,由清华大学徐士良教书,用C编写的各种数学算法。比如:托伯利兹型线性代数方程组的递推算法,全选主元高斯消去法解复系数线形代数方程组,复矩阵求逆的全选主元高斯-约当法,等;-numerical analysis algorithm descr iption and answer the questions from Qinghua University XU Shi-liang, teaching C prepared by the various mathematica
-
-
0下载:
扫描器类的设计1. 构造算术表达式的四元式翻译文法
2. 设计算术表达式的递归下降子程序分析算法
3. 设计算术表达的四元式生成算法
4. 实现代码并调试运行
-scanner category of a design. Construction arithmetic expressions four yuan grammar-translation 2. Design arithmetic expression analysis subroutine decline recur
-
-
0下载:
此为编译原理实验报告 学习消除文法左递规算法,了解消除文法左递规在语法分析中的作用 内含 设计算法 目的 源码 等等.... 算法:消除左递归算法为: (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)所得的文法。即
-
-
0下载:
用蛮力,分治,动态递归算法设计最大子段和问题的算法及其分析-Use brute force, sub-rule, dynamic recursive algorithm design and problems in the largest sub-segment algorithm and its analysis of
-
-
0下载:
这是我的编译课程设计,实现的是递归下降分析算法,你们可以下下来参考一下-This is my compiler curriculum design, implementation analysis of the decline are recursive algorithm, you can look down under
-
-
0下载:
算法分析中的实例,利用递归的思想解决动态规划问题-Examples of algorithm analysis, recursive thinking to solve the problem of dynamic programming
-
-
0下载:
字符串扩展问题的递归算法及动态规划算法的详细分析及实现-implementation and detailed analysis of recursive algorithm and dynamic programming algorithm of string expansion issue
-
-
0下载:
一、 pl0文法:适用于递归下降分析算法-A, pl0 grammar: for analysis declined recursive algorithm
-
-
0下载:
探询路径
问题的提出:编写程序,输出下图的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
-
-
0下载:
算法分析中的棋盘跳马问题,采用递归法求解,包含思路和源码-Algorithm analysis of the issue of board vault, using the recursive method, including the ideas and source code
-
-
0下载:
算法分析中的地图多种颜色着色问题,采用递归思想-Algorithm analysis of multi-color map coloring problem, the use of recursive thinking
-
-
0下载:
采用递归思想解决汉诺塔问题:详细的步骤分析,算法分析和实现。采用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
-
-
0下载:
算法分析中的递归法齿轮问题,VC++写的C源代码-The recursive algorithm analysis method gear problem, VC++ source code written in C
-
-
0下载:
使用vc++实现算法分析与设计中n图着色的的实现,使用递归算法,比较简单-Using vc++ algorithm analysis and design of the implementation of n graph coloring, using a recursive algorithm, a relatively simple
-
-
0下载:
算法分析与设计中用递归算法求汉诺塔的问题-Algorithm Analysis and Design of recursive algorithm to solve the Hanoi Tower problem
-
-
0下载:
用算法分析中递归与分治算法实现的,最长公共子序列算法,编程环境为vc-Analysis using the recursive algorithm and the divide and conquer algorithm, the programming environment for the vc++
-
-
0下载:
汗罗塔的算法,有递归和非递归的算法分析,程序可以自己看看!-Khan Rota' s algorithm, recursive and non recursive algorithm analysis, the program can see for yourself!
-
-
0下载:
计算机实验室
内容:
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
-
-
0下载:
研究生上课所用的算法分析与设计相关文档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
-