搜索资源列表
-
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下载:
算法设计于分析中的多段图问题,用VC编写应用动态规划的算法设计方法,利用最优性原理以及所获得的递推关系式求取最优决策序列,通过多段图的定义,找到由源点s到汇点t的最小成本路径,进而可以灵活解决可以用多段图描述的许多实际问题.-algorithm design in the analysis of many of the map, prepared with VC dynamic programming algorithm design, the optimum principle as well
-
-
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下载:
算法设计与分析
1. 用直接递归方法计算n!:
(2)通过键盘输入n的值,(
2. 用直接递归方法计算第n个Fibonacci数:
3. 用直接递归方法计算Ackerman函数:
4. 用直接递归方法给出n个元素的全排列:
8. 用直接递归方法求解Hanoi塔问题
,Algorithm Design and Analysis 1. Using direct recursive meth
-
-
0下载:
《算法设计与分析》王晓东编著,第二章递归与分治策略课本例子代码实现- Algorithm Design and Analysis edited by Wang Xiaodong, chapter and sub-rule strategy recursive textbook example of code to achieve
-
-
0下载:
字符串扩展问题的递归算法及动态规划算法的详细分析及实现-implementation and detailed analysis of recursive algorithm and dynamic programming algorithm of string expansion issue
-
-
0下载:
素数环: 把从1到10这10个数摆成一个环,要求相邻的两个数的和是一个素数。 〖问题分析〗 这是一道回溯的题目。从1开始,每个空位有9种可能,每种可能加入约束条件即可
1.与前面所有的数不重复
2.与前一个数和为素数(最后一个和第一个也要满足)。 〖算法流程〗 1、数据初始化; 2、递归填数: 判断第J种可能是否合法; A、如果合法:填数;判断是否到达目标(10个已填完): 是,打印结果;不是,递归填下一个; B、如果不合法:选择下一种可能;-Prime Centra
-
-
0下载:
山东师范大学计算机系《算法设计与分析》授课资料,讲解递归与分治策略,很全面,推荐。-Department of Computer Science, Shandong Normal University, "Algorithm Design and Analysis of" the medium of instruction information, and division on the recursive strategy, it is fully recommended.
-
-
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下载:
算法分析设计之递归与分治法Algorithm Analysis and Design of recursive and divide and conquer-Algorithm Analysis and Design of recursive and divide and conquer Algorithm Analysis and Design of recursive and divide and conquer
-
-
0下载:
用算法分析中递归与分治算法实现的,最长公共子序列算法,编程环境为vc-Analysis using the recursive algorithm and the divide and conquer algorithm, the programming environment for the vc++
-
-
0下载:
算法分析实验中,用递归与分治算法实现的最接近点对实验,编程环境为vc-Algorithm analysis experiments, using a recursive divide and conquer algorithm with the nearest point of the experiment, vc++ programming environment
-
-
0下载:
汗罗塔的算法,有递归和非递归的算法分析,程序可以自己看看!-Khan Rota' s algorithm, recursive and non recursive algorithm analysis, the program can see for yourself!
-
-
0下载:
数值分析算法描述与习题解答,由清华大学徐士良教书,用C开发的各种数学算法。比如:托伯利兹型型线性代数方程组的递推算法,全选主元高斯消去法解复系数线形代数方程组,复矩阵求逆的全选主元高斯
-The numerical analysis algorithm descr iption and answer exercises, taught by Tsinghua University, XU Shi-liang, C development of mathematical algorithms.
-
-
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
-
-
0下载:
快速ICA算法(Fast ICA),该算法是基于定点递推算法得到的,它对任何类型的数据都适用,同时它的存在对运用ICA分析高维的数据成为可能。-Fast ICA algorithm (Fast ICA), the algorithm is based on fixed-point recursive algorithm, and it is applicable to any type of data, and its presence on the use of high-dimensiona
-