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

搜索资源列表

  1. bitree

    0下载:
  2. 编写递归算法,在二叉树中求位于先序序列中第k个位置的结点的值- Write a recursive algorithm, and seeking in the first sequence binary sequence of k-th position of the value of a node
  3. 所属分类:assembly language

    • 发布日期:2017-11-18
    • 文件大小:757
    • 提供者:deng
  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
    • 文件大小:34679
    • 提供者:雷老虎
  1. 3213123

    0下载:
  2. 迷宫问题 具有递归和非递归算法,好东西,和大家分享:其实迷宫问题的算法还有好多-Maze problem with recursive and non-recursive algorithm, good things to share: In fact, there are a lot maze of algorithm
  3. 所属分类:software engineering

    • 发布日期:2017-04-13
    • 文件大小:1763
    • 提供者:liwei
  1. mazepath

    0下载:
  2. 迷宫,关于递归算法和非递归算法求迷宫的源代码利用栈的原理来解释-Maze, about recursive and non-recursive algorithm maze algorithm for the use of the source code to explain the principles of the stack
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:299883
    • 提供者:诚可贵
  1. Fill

    0下载:
  2. 用递归算法实现对多边形内部的填充,要求内部颜色和边界不一致。-Recursive algorithm on the interior of the polygon fill, color and requirements of internal borders is inconsistent.
  3. 所属分类:OpenGL program

    • 发布日期:2017-04-10
    • 文件大小:1048371
    • 提供者:泪无痕
  1. stacknode

    0下载:
  2. 栈这种数据结构是一个工具性的数据结构,通常被其它复杂数据结构所使用。比如实现二叉树的遍历的非递归算法。下面就用C++模板实现栈数据结构的一个较完整代码!在书本《数据结构(C语言版)--严慰明》提到栈可以用数组,也可以用链表实现,这里只用链表实现这一数据结构。-This data structure is a stack instrumental data structure is often used for other complex data structures. Such as a bi
  3. 所属分类:MiddleWare

    • 发布日期:2017-04-02
    • 文件大小:2278
    • 提供者:liyuyu
  1. 6-44

    0下载:
  2. 编写递归算法:求二叉树中以元素值为x的节点为根的子树的深度-Write a recursive algorithm: the value of an element in the binary tree node x is the depth of the subtree rooted
  3. 所属分类:GUI Develop

    • 发布日期:2017-03-29
    • 文件大小:1143
    • 提供者:wenxiaohua
  1. Eric

    0下载:
  2. 输入字符类型算式,进行四则运算,支持括号和括号嵌套,用递归算法,支持科学计数法-Enter the character type formula for four operations, support brackets and parentheses nested, recursive algorithm, support scientific notation
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:496071
    • 提供者:Eric
  1. Binary-Tree

    0下载:
  2. 本代码实现二叉树的先序,中序的递归算法及非递归算法,并用递归实现了后序遍历-This code implements the first binary sequence, sequence of recursive algorithms and non-recursive algorithm, and realized after using recursive traversal
  3. 所属分类:source in ebook

    • 发布日期:2017-04-02
    • 文件大小:879
    • 提供者:zhang
  1. binary-tree

    0下载:
  2. (1)输入字符序列,建立二叉链表。 (2)先序、中序、后序遍历二叉树:递归算法。 (3)中序遍历二叉树:非递归算法。(最好也能实现先序、后序非递归算法) (4)求二叉树的高度 。 (5)求二叉树的叶子个数。 (6)借助队列实现二叉树的层次遍历。 (7)在主函数中设计一个简单的菜单,分别调试上述算法。-(1) Enter the character sequence to build binary list. (2) first order, in sequence, a
  3. 所属分类:Console

    • 发布日期:2017-04-01
    • 文件大小:2525
    • 提供者:fei
  1. erchashu

    0下载:
  2. 递归算法的使用,练习小代码。挺实用,可以用来学习递归-The use of recursive algorithm, exercises little code. Very practical
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:584
    • 提供者:stone
  1. a

    0下载:
  2. 10个自行车租赁点的需求量和拥有量及相关位置为依据,建立调度运行成本最小的目标函数,采取C++编程的方法求解最优调度方案。 针对该调度问题,分析自行车拥有量超过或者少于需求量的不同租赁点,并假设自行车缺少的租赁点不向外调度自行车,只接受拥有量大于需求量的租赁点的自行车调入,在定义相关常量、初始化相关数据结构的基础上,使用递归算法,求解主函数使得调度成本最少,即 。先计算任意调配方案及每个多车的租赁点在调配后剩余车辆,并根据租赁点剩余数值计算最小花费,若此花费大于记录的最小花费,证明此种调配不
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:1009
    • 提供者:ziyi
  1. zhishu

    0下载:
  2. 改进的递归算法,输出100以内的质数,VB.NET程序。通过已经得到的质数,算出下一个质数。-output the prime number within 100 Using improved recursion algorithm, the programe is coded with vb.net. Through got prime, calculate the next prime Numbers.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:44671
    • 提供者:rnabou
  1. sort

    0下载:
  2. 直接顺序排序 希尔排序 起泡排序 快速排序一次划分 快速排序 简单选择排序 筛选法调整堆 堆排序 一次归并 一趟归并 归并排序的非递归算法 归并排序的递归算法 等各种排序方法-Sort Direct Hill sorting Bubble sort Quicksort once divided Quicksort Simple selection sort Screening method to adj
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:2134
    • 提供者:sd
  1. Recursive-triangle

    0下载:
  2. 三角形的递归算法的实现,简单的算法实现,用vc语言。-Recursive triangle
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:646775
    • 提供者:
  1. small_arithmetics

    0下载:
  2. 一个好的递归算法可以实现基本的人工智能,无论下棋,还是什么.因为它可以实现一定程序的"预知未来",下面程序用了一个最鲜明的例子讲述了递归的入门难点,也就是注意点。-Recursive algorithm can achieve a good basic artificial intelligence, regardless of chess, or what, because it can achieve some degree of "predict the future", the foll
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:26001
    • 提供者:袁小龙
  1. BITree

    0下载:
  2. 二叉树遍历,运用指针求解其中包含先序遍历,先序、中序、后序遍历的递归算法,二叉树遍历的非递归算法,层次的非递归算法,求二叉树的深度-Binary tree traversal, which contains the first use of pointer traversal solution, first order, in sequence, after traversing the recursive algorithm, binary tree traversal non-recursi
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:133737
    • 提供者:mike
  1. Btree

    0下载:
  2. 平衡二叉排序树实现平衡二叉排序树的各种算法 涉及递归算法堆栈算法队列算法树型查找 -Balanced binary sort tree
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:3231
    • 提供者:郑佳欣
  1. fractal_matlab

    1下载:
  2. 常用分形算法的mablab实现,包括递归算法、L系统算法、IFS迭代和逃逸时间算法-Fractal algorithm mablab commonly realized, including recursive algorithm, L system algorithm, IFS iteration and escape time algorithm
  3. 所属分类:matlab

    • 发布日期:2017-03-31
    • 文件大小:29309
    • 提供者:任光明
  1. 3_1

    0下载:
  2. 若用二叉链表作为二叉树的存储表示,试针对以下问题编写递归算法: 统计二叉树中叶结点的个数。 -If using the binary tree as a binary tree stores that try to prepare for the following recursive algorithm: Statistics mid-binary number of nodes.
  3. 所属分类:assembly language

    • 发布日期:2017-04-06
    • 文件大小:1061
    • 提供者:张敏
« 1 2 ... 33 34 35 36 37 3839 40 41 42 43 ... 50 »
搜珍网 www.dssz.com