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

搜索资源列表

  1. Hanio

    0下载:
  2. 汉诺塔游戏的设计 汉诺塔问题是最经典的递归问题-Tower of Hanoi Tower of Hanoi game design is the most classic recursion problem
  3. 所属分类:Other Games

    • 发布日期:2017-04-17
    • 文件大小:12735
    • 提供者:fans
  1. MergeSort

    0下载:
  2. mergesort分治排序 - 先产生1000个随机数,连续分为3组,直到每组只剩k个元素,分别排列每组数,再用分治法合并数组-mergesort- randomly generate 1000 numbers, then split it into thirds, subarray is of size- k, stop the recursion and use insertion-sort to sort the subarray, then merge sort
  3. 所属分类:Java Develop

    • 发布日期:2017-03-23
    • 文件大小:1053
    • 提供者:
  1. RandomizedQuicksort

    0下载:
  2. The steps are: 1. Pick an element, called a pivot, from the list. 2. Reorder the list so that all elements which are less than the pivot come before the pivot and so that all elements greater than the pivot come after it (equal values can go ei
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-31
    • 文件大小:113589
    • 提供者:Clay84
  1. hanoi

    0下载:
  2. Hanoi塔的递归调用和消除尾递归的方法,附带算法的设计思路和分析-Hanoi Tower recursive calls and the elimination of tail recursion method with the algorithm design and analysis of ideas
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:9160
    • 提供者:齐笑尘
  1. acm..

    1下载:
  2. 自相关法求全极点模型参数; 下行递归; 逆Levinson-Durbin递归(模型参数~自相关序列); 平均周期图的Bartlett方法; Blackman-Tukey功率谱估计。-Autocorrelation perfection pole model parameters downward recursion inverse Levinson-Durbin recursion (model parameters ~ autocorrelation sequence)
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:2243
    • 提供者:jin
  1. Data_Structure_C

    1下载:
  2. 基本数据结构的C实现。包括: (1)线性顺序表 (2)单链表 (3)双向循环链表 (4)顺序栈 (5)链式队列 (6)循环队列 (7)二叉树的先序、中序、后序的递归遍历和非递归遍历。-C-realization of the basic data structure. Include: (1)Sq_List (2)Linked_List (3)Du_linkedlist (4)Sq_Stack (5)Linked_Queue (6)Cycl
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:680387
    • 提供者:马也凡
  1. Sierpinskiditan

    0下载:
  2. 给定不同的递归深度,通过使用海绵算法,绘制Sierpinski地毯,在三维环境中按照画家算法绘制20个小立方体-Given the different recursion depth, by using the sponge method, drawing Sierpinski carpet, in the three-dimensional environment, according to Painter' s algorithm draw 20 small cubes
  3. 所属分类:3D Graphic

    • 发布日期:2017-05-09
    • 文件大小:1978399
    • 提供者:如花
  1. zuidashang

    0下载:
  2. 最大熵是图像阈值分割里常用的一种简单且效果明显的方法。该代码是最大熵算法的快速递推形式。-Maximum Entropy is Image Threshold Segmentation ri common a simple and obvious effect method. The code is maximum entropy algorithm rapid recursion forms.
  3. 所属分类:Special Effects

    • 发布日期:2017-03-30
    • 文件大小:1100
    • 提供者:王家友
  1. DE

    0下载:
  2. 用数组模拟递归函数,实现递归函数的简化算法,具体要求看英文描述。-We all love recursion! Don t we? Consider a three-parameter recursive function w(a, b, c): if a <= 0 or b <= 0 or c <= 0, then w(a, b, c) returns: 1 if a > 20 or b > 20 or c > 20
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1267
    • 提供者:谢锦明
  1. hanruota

    0下载:
  2. 递归经典例子--汉诺塔程序,用C#写成,可视化界面。-Classic example of recursion- Tower of Hanoi program, written using C#, visual interface.
  3. 所属分类:CSharp

    • 发布日期:2017-04-02
    • 文件大小:65027
    • 提供者:zjt
  1. A_class_of_Linear_ODE_WITH_Finite_Recursion

    0下载:
  2. 求一类常系数线性常微分方程特解的有限递推法-A class of Linear Ordinary Differential Equations with Finite Recursion
  3. 所属分类:matlab

    • 发布日期:2017-04-04
    • 文件大小:272030
    • 提供者:shuyi
  1. CommonAlgorithmDesign

    0下载:
  2. 常用的算法设计方法集合,主要有迭代法、穷举搜索法、递推法、贪婪法、回溯法、分治法、动态规划法-Algorithm commonly used method of collection, mainly iterative, exhaustive search methods, recursion, greedy method, backtracking, divide and conquer, dynamic programming
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:67716
    • 提供者:YuMy
  1. XMLparserforc

    0下载:
  2. 将树形数据结构用于最小化DOM 模型XML 编解码器的开发。在解析XML 文本时,基于Expat 解释器将XML 字符串构造成树 状结构;编码时构造DOM 树结构,采用非递归深度优先法遍历树,将其串行化成XML 串。本编解码器解决了国际化语言关键问题,是 一个通用、高效的工业级XML 应用支撑模块。-This paper designs a DOM liked tree data structure for developing a minimal DOM based eXtended
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:66650
    • 提供者:czhui2000
  1. __xmlParser

    0下载:
  2. XML解析类,轻巧、简单、易用(内含源码、示例程序以及文档说明)-This is a basic XML parser written in ANSI C++ for portability. It works by using recursion and a node tree for breaking down the elements of an XML document.
  3. 所属分类:File Operate

    • 发布日期:2017-05-08
    • 文件大小:1558561
    • 提供者:wangzhenming
  1. Fractal

    0下载:
  2. 分形算法设计,包括摇曳的分形递归树、摇摆的Sierpinski三角形、万花筒和王冠(Julia集)-Fractal algorithm design, including the fractal recursion trees swaying, rocking the Sierpinski triangle, Kaleidoscope and the crown (Julia set)
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1976451
    • 提供者:卜少锋
  1. musicdsp

    0下载:
  2. musicdsp source code archive-Analysis Beat Detector Class Coefficients for Daubechies wavelets 1-38 DFT Envelope detector Envelope Detector class (C++) Envelope follower with different attack and release Fast in-place Walsh-Hadamard Tra
  3. 所属分类:Audio program

    • 发布日期:2017-03-28
    • 文件大小:825946
    • 提供者:Alan Tang
  1. Practice2

    0下载:
  2. 用普通递归与消除尾递归的方法实现解决汉诺塔问题c#-With general recursion and tail recursion elimination method to solve Tower of Hanoi problem c# implementation
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:303296
    • 提供者:Andrew
  1. Fractral4

    0下载:
  2. 初步介绍分形编程,示例中显示了4种分形图案,递归算法简单易懂。-Introduction to fractal programming, the example shows four kinds of fractal patterns, recursion is easy to understand.
  3. 所属分类:Graph Drawing

    • 发布日期:2017-04-05
    • 文件大小:28619
    • 提供者:Lu
  1. Levinson

    1下载:
  2. 采用列文逊递推算法求解对称托伯利兹型方程组。其中t存放T型矩阵的元素。b是右端常数向量。x是解向量。n是阶数。-Using Levinson recursion algorithm for symmetric Tuobolizi equations. Where t T-matrix elements of deposit. b is the right end of the constant vector. x is the solution vector. n is the order.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-23
    • 文件大小:1172
    • 提供者:Shepard
  1. MARYUWA

    1下载:
  2. c语言编写的DSP程序,用Yule-Walker方程,采用levinson递推实现功率谱估计。-c language of the DSP program, with the Yule-Walker equations, levinson recursion to achieve power spectrum estimation.
  3. 所属分类:DSP program

    • 发布日期:2017-03-31
    • 文件大小:804
    • 提供者:zl
« 1 2 3 4 5 6 78 9 10 11 12 ... 24 »
搜珍网 www.dssz.com