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

搜索资源列表

  1. 编译原理及实践

    1下载:
  2. 目      录 译者序 前言 第1章   概论 1 1.1   为什么要用编译器 2 1.2   与编译器相关的程序 3 1.3   翻译步骤 5 1.4   编译器中的主要数据结构 8 1.5   编译器结构中的其他问题 10 1.6 &
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-04-25
    • 文件大小:7612048
    • 提供者:wesong
  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. 5个c程序源代码

    0下载:
  2. 五个c源代码 矩阵的运算方法 邻接矩阵求解最短路径 全屏幕模拟时钟 先序遍历非递归算法 字符串查找-5 c source code matrix arithmetic method adjacency matrix for the Shortest Path full-screen analog clock preorder non - recursive algorithm to search string
  3. 所属分类:文件操作

    • 发布日期:2008-10-13
    • 文件大小:4900
    • 提供者:张广旭
  1. 三种遍历

    0下载:
  2. 本程序实现了层序遍历非递归、后续遍历非递归和中序遍历非递归三种算法-the program sequence traverse non - recursive and non - recursive traversal follow-up and the preorder three non - recursive algorithm
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2755
    • 提供者:yue
  1. DFS※Prim

    0下载:
  2. 用普里姆(Prim)算法构造最小生成树;图的DFS算法的非递归遍历函数。-with Primbetov (PRIM), the minimum spanning tree algorithm constructs; Map of the DFS non - recursive algorithm traversal function.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:3916
    • 提供者:贾德
  1. N皇后问题的回溯法,非递归实现

    0下载:
  2. 这是N皇后问题的回溯法,非递归实现.此算法对初学者有难度,最好去参考书.这个问题也是回溯法的经典例题,推荐自己去实践.还有,我贴的程序在TC3.0下调试通过.-This the Queen's retroactive law, non - recursive. This algorithm is difficult for beginners, to the best reference books. This issue is also back classic example of
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:4227
    • 提供者:fzr
  1. 非递归

    0下载:
  2. 数据结构 迷宫问题 迷宫非递归算法.rar-data structures, maze problem, non-recursive algorithm for maze problem
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1788
    • 提供者:长风
  1. 快速排序非递归算法(队列实现)

    0下载:
  2. 快速排序的非递归方法
  3. 所属分类:数据结构常用算法

  1. quicksort

    0下载:
  2. 用非递归实现快速排序 主要思想: 利用栈来消除递归-Non-recursive quicksort implementation the main idea: to eliminate the use of recursive stack
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-23
    • 文件大小:10857
    • 提供者:weixiaoguoke
  1. CFileFindExt

    0下载:
  2. CFileFind的扩展类CFileFindExt。加强了CFileFind类的功能,直接做成类CFileFind的继承类,非递归化时(为加快搜索速度,减少开销)将先深遍历改为层次遍历,用户根据需要可增加返回所有子目录名函数以及其它多参数处理函数。-CFileFind the expansion of category CFileFindExt. Strengthened CFileFind functions directly into the category of succession C
  3. 所属分类:File Operate

    • 发布日期:2017-04-05
    • 文件大小:3382
    • 提供者:narnia
  1. LAB_4

    0下载:
  2. 树的遍历,采用非递归的方法对树进行中序遍历-Tree traversal, the use of non-recursive methods of tree traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:780
    • 提供者:xuhaifeng
  1. abcd

    0下载:
  2. 这个非递归预测分析器可以自动分析一段代码,并且保存到文件里面!-The non-recursive prediction section of the analyzer can automatically analyze the code, and saved to a file inside!
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:10786
    • 提供者:王宏
  1. Tree

    0下载:
  2. 1.建立完全二叉树 2.先序非递归遍历二叉树函数 & 先序递归遍历二叉树验证 3.中序非递归遍历二叉树函数 & 中序递归遍历二叉树验证 4.后序非递归遍历二叉树函数 & 后序递归遍历二叉树验证 -1 to establish a fully binary tree 2 first order non-recursive binary tree traversal function preorder recursive traversal of binary tree &
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:215220
    • 提供者:许许
  1. 大作业1

    0下载:
  2. 归并排序是分治思想的经典代表,与以往不同,本次编码为归并排序的非递归实现算法,其结构简洁清晰,可理解性和直观性不亚于原递归实现方法,并且效率更高,可以减轻计算机系统的负担,可用于计算机专业“数据结构”课程教学。(The program is good. And I believe it can help you.it is my thing)
  3. 所属分类:网址推荐

  1. 算法设计

    0下载:
  2. 问题描述:以一个m×n的长方形表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。 基本要求:首先实现一个以链表作存储结构的栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(i,j,d)的形式输出,其中:(i,j)指示迷宫中的一个坐标,d表示走到下一坐标的方向。(Problem Descr iption: a m * n rectangle represents the maze, and 0 and 1 i
  3. 所属分类:其他

    • 发布日期:2017-12-21
    • 文件大小:2048
    • 提供者:beautiful
  1. 1160300803_樊静_实验二

    0下载:
  2. 森林和树的基本操作 ,森林的存储,森林转化成二叉树,二叉树的先序中序后序非递归遍历,以及区间编码(The basic operations of forests and trees, the storage of forests, the conversion of forests into two forked trees, the preorder and the post order of the two forked trees, and the interval encoding,
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:233472
    • 提供者:hit樊静
  1. text_2

    0下载:
  2. 非递归算法求所有银行家安全序列,emmmmmmmmmmmm(Non recursive algorithm for all banker's safety sequences)
  3. 所属分类:Java编程

    • 发布日期:2018-01-10
    • 文件大小:2048
    • 提供者:yzyonion
  1. tree3

    1下载:
  2. 集成了二叉树的基本需求,内含二叉树的循环链表实现的非递归层次遍历和运用链表求树的宽度。(It integrates the basic requirement of two branch tree, which includes the recursive link list implemented by two binary tree, and the width of tree is calculated by linked list.)
  3. 所属分类:文章/文档

    • 发布日期:2018-05-02
    • 文件大小:1024
    • 提供者:limited
  1. 递归下降法分析过程(cpp)

    1下载:
  2. 采用递归子程序方法进行语法分析,对文法中的每个非终结符号按其产生式结构产生相应的语法分析子程序,完成相应的识别任务。其中终结符产生匹配命令,非终结符则产生调用命令。每次进入子程序之前都预先读入一个单词。因为使用了递归下降方法,所以程序结构和层次清晰明了,易于手工实现,且时空效率较高。实际的语法分析工作,从调用总程序的分析子程序开始,根据产生式进行递归调用各个分析子程序。
  3. 所属分类:源码下载

  1. B spline interpolation

    1下载:
  2. 本程序用matlab编写非递归的b样条曲线轨迹规划生成算法,该算法可以应用于C语言环境(Non-recursive algorithm for generating B-spline curve trajectory planning)
  3. 所属分类:数值算法/人工智能

    • 发布日期:2019-12-06
    • 文件大小:4096
    • 提供者:dianlituodong
« 1 23 4 5 6 7 8 9 10 ... 49 »
搜珍网 www.dssz.com