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

搜索资源列表

  1. 换位递归

    0下载:
  2. 此程序是用排序实现换位递规的的版本, 对程序的操作有一定的帮助作用-This program realizes the conversion recursion by sorting, making some use to operation of program.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:880
    • 提供者:里拨
  1. lhh5

    0下载:
  2. 动态数组 用函数递归和非递归的方法求两个整数的最大公约数-Dynamic array, compute the largest common divisor of two intergal by recursion and non-recursion.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1126
    • 提供者:劳伦斯
  1. e34

    0下载:
  2. 这是用vc++编写的程序,在语音识别中经常用用到,是语音识别的第一步:time alignment. 分别用两种方式完成:1.非递归2.递归-This a vc++ program which is useful in voice recognizing and it is also the basic of the voice recognizing .I use two ways to accomplish it:1 nonrecursion 2.recursion
  3. 所属分类:语音合成与识别

    • 发布日期:2008-10-13
    • 文件大小:1447
    • 提供者:冷彦
  1. 如何返回目录大小

    0下载:
  2. 用C#写的返回目录大小(包括子目录) 用到递归,速度一般-written in C# size of the back catalog (including subdirectories) uses recursion, the pace
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:811
    • 提供者:胡磊
  1. lianliankan1

    0下载:
  2. 利用递归来求的,其实连连看的搜索算法也就是搜索从一个点到另外一个点的不超过两次转弯的最短距离!-use recursion to seek the 1000 block of Terry Avenue fact, the search algorithm is a search from one point to another point of not more than twice the minimum distance between turning!
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2702
    • 提供者:潘洪峰
  1. ACKFunction

    1下载:
  2. 实现阿克曼函数并统计递归调用次数 Counting times of recursion calling 1. 问题描述 定义阿克曼递归函数: ACK(0,n)=n+1 n>=0 ACK(m,0)=ACK(m-1,1) m>=1 ACK(m,n)=ACK(m-1,ACK(m,n-1)) m,n>0 2. 基本要求 读入m、n,输出ACK(m,n)的值,并统计递归调用次数。-Ackermann achieve statistical a
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:8753
    • 提供者:李昭明
  1. piaoliang

    0下载:
  2. 在二叉搜索树上删除一个有两个子女的结点时,可以采用以下三种方法: (1) 用左子树TL上具有最大关键码的结点X顶替,再递归地删除X。 (2) 交替地用左子树TL上具有最大关键码的结点和右子树TR上具有最小关键码的结点顶替,再递归地删除适当的结点。 (3) 用左子树TL上具有最大关键码的结点或者用右子树TR上具有最小关键码的结点顶替,再递归地删除适当的结点。可随机选择其中一个方案。 -two forks in search of a tree to delete two chi
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1097
    • 提供者:dfssd
  1. sequential_recursion_search

    0下载:
  2. c code for sequencial recursion search -c code for sequencial recursion search
  3. 所属分类:教育/学校应用

    • 发布日期:2008-10-13
    • 文件大小:851
    • 提供者:学学
  1. changyongshuanfa.pdf

    0下载:
  2. 常用算法的C语言实现方法,如迭代法,穷搜法,递推法等等。-commonly used algorithm in C language, such as iterative method, Anything, recursion, and so on.
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:240696
    • 提供者:杨洋
  1. 消除左递归1

    0下载:
  2. 对给定的文法消除左递归。- To the grammar which assigns eliminates the left recursion.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1469
    • 提供者:刘远兴
  1. 消除左递归得到后缀式

    0下载:
  2. 解法:对原文法消除左递归,根据消除左递归后的等价文法建立语法树,而后对此语法树 进行后根遍历,即可得到后缀式.- Solution: Eliminates the left recursion to the original grammar, after equal in value grammar establishment grammar tree which eliminates the left recursion, after but the grammar tree carrie
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2219
    • 提供者:刘远兴
  1. BST - Bina2889710132001

    0下载:
  2. Binary Search Tree - with additional recursion functions (smallest, parent & successor) etc
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:230037
    • 提供者:sgzhang0180
  1. scantree

    0下载:
  2. This a small program which scans a particular section of your hard disk ( a tree) using recursion and returns information like the total number of files, folders, used disk space in that tree.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:150633
    • 提供者:~{AVU}=\\~}
  1. hanno

    0下载:
  2. 这是一个汉诺塔游戏的原代码,tc环境.可是图型界面的哦~~,不要认为是一般的递归了!-HANOR the original game code, tc environment. However, the map-based interface ~ ~ Oh, do not believe that the general recursion!
  3. 所属分类:游戏

    • 发布日期:2008-10-13
    • 文件大小:5787
    • 提供者:张秋水
  1. TreeListRecursion

    0下载:
  2. This article is a tree list recursion.
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:33241
    • 提供者:zhb
  1. 贴片法画球(OpenGL)

    0下载:
  2. 不是用递归,改用贴片法。也是很基本的离散方法-not use recursion using the patch method. Only basic discrete methods
  3. 所属分类:OpenGL

    • 发布日期:2008-10-13
    • 文件大小:5698
    • 提供者:q沙子
  1. N_queue

    0下载:
  2. 根据回朔法思想来求解N皇后问题,用递归来实现回朔.-Thought to solve N Queen's problems, and use recursion to achieve back Schomburg.
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:843
    • 提供者:郭宏慧
  1. 新建 RTF 文档 (3)

    0下载:
  2. 这是一个典型的非数值问题,如果使用非递归算法求解此问题,要设计复杂的算法,编写很长的程序。而使用递归算法可以使整个算法清晰,使程序简洁。本问题分析并建立递归算法的过程是典型的抽取问题本质、建立递归算法 并最终解决非数值问题递归实例。-This is a typical non_numerical value problem.you must design complicated arithmetic and long program if you use non_recursion arithm
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1797
    • 提供者:张趁
  1. Recursion.rar

    0下载:
  2. 快速DCT变换 迭代算法, Fast DCT transformation iteration algorithm
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-08
    • 文件大小:1208
    • 提供者:周辉
  1. ShowTree.rar

    0下载:
  2. 递归显示树形视图所有节点 对树形视图实行动态添加删除 VC MFC CTreeView,Recursion tree view displays all nodes on the tree view of the kind of dynamic add remove VC MFC CTreeView
  3. 所属分类:TreeView

    • 发布日期:2017-05-14
    • 文件大小:3969744
    • 提供者:leo_tan
« 1 2 34 5 6 7 8 9 10 ... 24 »
搜珍网 www.dssz.com