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

搜索资源列表

  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. jlfx

    0下载:
  2. 本程序实现模糊数学中聚类分析算法,该算法通过递归来实现分类。-This procedure in the realization of fuzzy cluster analysis algorithm to achieve through the recursive classification.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:2.04kb
    • 提供者:陆丽娟
  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. 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. Principles-of-curriculum-design

    1下载:
  2. 编译原理课程设计总结报告 1.设计题目及相关内容 本课程设计完成的是递归下降分析法。对算术表达式和赋值语句进行语义分析并生成四元式序列。其中,本设计用C语言对简单的pascal语言子集编制一个编译程序。语义分析输入的是语法分析后提供的单词串,而语法分析的输入是词法分析的程序所提供的单词序列。要求把语法分析程序和词法分析都作为子程序调用,其中输入字符串要用文件操作。 2.运行环境(软、硬件环境) 硬件环境:方正电脑,P4CPU,512M内存 软件环境:Visualc+
  3. 所属分类:Windows编程

    • 发布日期:2016-06-30
    • 文件大小:2.54mb
    • 提供者:爱爱爱
  1. suanfafenxi

    0下载:
  2. 五个经典的算法分析中的算法及例题,涉及到递归法、回溯法、动态规划法等经典算法-Analysis of the five classical algorithm and the example of the algorithm involves recursive law, retroactive law, such as the classic dynamic programming algorithm
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:91.49kb
    • 提供者:
  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. test

    0下载:
  2. 实对称正定矩阵LDL^分解,其中L为单位下三角矩阵,D为对角阵-A recursive algorithm for calculating the eigenvalues of a real symmetric matrix based on LDLT decomposition is given. With this algorithm, the number of eigenvalues of a real symmetric matrix in the given interval c
  3. 所属分类:Console

    • 发布日期:2017-03-29
    • 文件大小:584.13kb
    • 提供者:李昕
  1. diguizuiyoujie

    0下载:
  2. 算法设计与分析的矩阵连乘中递归最优解的实现源代码-Algorithm design and analysis of the matrix multiplicative recursive optimal solution to achieve the source code
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:498.7kb
    • 提供者:星晴
  1. Round-robin-schedule

    0下载:
  2. 循环赛日程表。大学算法分析与设计的实验课题目。有递归和非递归两种方法,这里上传递归,仅供参考!-Round-robin schedule. Head of the University of algorithm analysis and design of experimental subjects. There are two methods of recursive and non recursive upload recursion, for reference purposes only
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:963byte
    • 提供者:Alex
  1. wentaicd

    0下载:
  2. 1. 工程检测信号AR模型的建模及参数谱分析 1.1 测试数据的采集、检验和预处理 1.2 模型参数的递推估计快速算法---Lenvinson算法 1.3 AR模型阶次的确定 1.4 AR参数谱的计算 -1. Engineering detection signal AR model modeling and parameters spectrum analysis 1.1 test data collection, the inspection and preproce
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:2.63kb
    • 提供者:zhangkai
  1. 20120502_lxw

    0下载:
  2. 实现编译原理中词法分析,语法分析,语义分析,包括递归下降算法,LL1文法等-Compiler theory lexical analysis, parsing, semantic analysis, including recursive descent algorithm, LL1 grammar
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-26
    • 文件大小:2.06mb
    • 提供者:刘晓曦
  1. binsearch

    0下载:
  2. 分治二分检索递归,算法设计与分析中的经典算法,值得大家参考学习。-Binary search recursive divide and conquer algorithm design and analysis of the classical algorithm, it is worth your learning.
  3. 所属分类:Other systems

    • 发布日期:2017-11-23
    • 文件大小:432.98kb
    • 提供者:waichengfeng
  1. Desktop

    0下载:
  2. 题目:假设迷宫由m行n列构成,有一个入口和一个出口,入口坐标为(1,1),出口坐标为(m,n),试找出一条从入口通往出口的最短路径。设计算法并编程输出一条通过迷宫的最短路径或报告一个“无法通过”的信息。 要求:用栈和队列实现,不允许使用递归算法。 一、 需求分析 -Topic: Assuming maze consisting of m rows and n columns form, having an inlet and an outlet, the inlet coord
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-13
    • 文件大小:33.87kb
    • 提供者:雷老虎
  1. fibonacci-recursion

    0下载:
  2. 斐波那契数列的递归算法实现的源代码,计算机算法设计与分析作业1-Fibonacci series recursive algorithm source code, design and analysis of computer algorithms operating 1
  3. 所属分类:Console

    • 发布日期:2017-04-01
    • 文件大小:310.65kb
    • 提供者:刘洋
  1. TaskDistribution

    0下载:
  2. 算法设计与分析中的任务分配问题。 用回溯法解该问题时,用完全n叉树表示解空间。可行性条件select 剪去不满足行、列约束的子树。递归方法 backtrack(1)实现对整个解空间的回溯搜索;backtrack(i)搜索解空间中的第i层子树,sum记录当前已找到的可行方案 数。在算法backtrack中,当i>n时,算法搜索至叶子结点,当前已找到的可行方案数sum加1;当i<=n时,当前扩展结点 Z是解空间中的内部结点。该结点有x[i]=1,2,...,n共n个
  3. 所属分类:Console

    • 发布日期:2017-04-08
    • 文件大小:1.85kb
    • 提供者:
  1. horsego

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

    • 发布日期:2017-04-30
    • 文件大小:9.07kb
    • 提供者:han317421
  1. Linear-prediction

    0下载:
  2. (1)掌握线性预测分析的基本原理。 (2)掌握线性预测误差滤波器参数与语音信号声道模型参数之间的关系。 (3)熟练掌握线性预测分析的自相关方法和Levinson-Durbin递推算法。 (4)熟悉语音信号的LPA谱估计方法-1) master the basic principles of linear predictive analysis. (2) to master the linear prediction error filter parameters and voic
  3. 所属分类:Console

    • 发布日期:2017-12-13
    • 文件大小:1.15mb
    • 提供者:潘多拉
  1. RPCA

    0下载:
  2. 主成分分析的RPCA递归算法,参考论文为2005年Xie(RPCA recursive algorithm for principal component analysis, reference paper for 2005 Xie)
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:7.42mb
    • 提供者:兔子很白
« 12 »
搜珍网 www.dssz.com