CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - step by step

搜索资源列表

  1. maze4444

    0下载:
  2. 由系统随机建立一个迷宫,然后屏幕输出路径。为在完成作业的同时复习所学过的内容,完成一条路径的时候用到了递归的方法 而做全部路径的时候用非递归的方法。用户界面友好,有用户使用说明.每一步操作都有说明与提示。程序运行通过,有详细的解释说明-system by the establishment of a random maze, and then screen output path. For the complete review of operations at the same time ha
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:932byte
    • 提供者:妮娜
  1. Critical_path2to2

    0下载:
  2. 本设计完成了要求的所有功能,可由系统建立一张图或者由用户自行建立一张图,并对该图进行关键路径的搜寻.用户界面友好,有用户使用说明,每一步操作都有说明与提示。程序运行通过,有详细的解释说明。-the design completed all the required functions, from the establishment of a system or plan established by the users themselves a map, and this map critica
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2.89kb
    • 提供者:妮娜
  1. Marriage

    0下载:
  2. 稳定婚姻:第一步配成一对夫妇, 即组成一个有序对, 以此作为问题的部分解, 以后每一步考虑一男一女, 如果将他们组成有序对并加入到部分解中, 不会引起不稳定, 则加入之 否则, 不组成有序对, 而是考虑另一对男女. 这样一步步地给部分解增加有序对, 直至得到完整解.在回溯的基础上,找到最优。 -stable marriage : first night of a couple that is a component ordered pair, as part of the problem sol
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.43kb
    • 提供者:小康
  1. c演示系统

    0下载:
  2. 用C语言实现的各种算法及演示,可以结合代码分步观看执行过程-C language algorithms and the various presentations, combining code can watch the step-by-step implementation process
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2.06mb
    • 提供者:zzc
  1. vsm

    1下载:
  2. 向量空间模型生成算法 文本挖掘的关键步骤就是对所给文档生成向量空间模型,然后对进行段落聚类-vsm generation algorithm text mining is a key step to the right documents generated by the vector space model, then right for paragraphs Clustering
  3. 所属分类:数据结构常用算法

    • 发布日期:2013-05-22
    • 文件大小:2.53kb
    • 提供者:fdongh
  1. datastructPPTflash.rar

    0下载:
  2. 有很陡数据结构的flash,PPT,帮你快速理解算法,一步步执行理解方便,There are steep data structure, flash PPT, to help you quickly understand the algorithm, a step by step to facilitate the implementation of the understanding
  3. 所属分类:Data structs

    • 发布日期:2017-05-22
    • 文件大小:6.55mb
    • 提供者:zhang
  1. 3230

    0下载:
  2. 带堆优化的贪心,从题意中我们可以得到的最暴力解法就是,每天都搜索整个数组,找出符合条件的题目并且它的经验是最大的,这样找M天就好了。接下来就是如何优化,在每次找的时候我们只要找经验最大的,因为可以用大顶堆组织可以做的题目,每次升级之后加入新的可以做的题目就OK了。-Optimized with a greedy heap, from the meaning of the questions, we can get the most violent solution is that every d
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:808byte
    • 提供者:ufo
  1. 4

    0下载:
  2. 学习数据结构的难点之处,就在于实现很抽象不易于理解。而本压缩包包含的数据结构演示器刚好能帮助你解决这一难题。该演示器功能完善,你既可以逐步演示,还可以不间断的演示,能让你实时的观察到这些过程,这无疑会对你学习数据结构产生很大的帮助-Learning difficulties between the data structure, it is not easy to achieve very abstract understanding. The package contains the comp
  3. 所属分类:Data structs

    • 发布日期:2017-05-15
    • 文件大小:3.6mb
    • 提供者:冰枫
  1. maze

    0下载:
  2. 由数字1和0组成迷宫,0代表可走路径,程序会用坐标的形式给出每一步的走法-Composed by a maze of numbers 1 and 0, 0 to go the path, the program will use the coordinates given in the form of moves at each step
  3. 所属分类:Data structs

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

    0下载:
  2. 贪心算法又被称为登山法,根本思想是逐步获得最优解,使用贪心算法选取那些最可能实现结果的解来考虑,即以逐步的最优达到最终的全局最优。哈夫曼算法是构造最优前缀码的贪心算法,以自底向上的方式构造表示最优前缀码的二叉树T,在算法中编码字符集中的每一字符c的频率为f(c),以f为键值的优先队列Q用在贪心选择时,有效地确定算法当前要合并的两棵具有最小频率的树,一旦两棵具有最小频率的树合并后,产生一棵新的树,其频率为合并的两棵树的频率之和,并将新树插入优先队列Q。-Greedy algorithm is a
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:1.75kb
    • 提供者:ss
  1. tudebianli

    0下载:
  2. 实现图的深度优先, 广度优先遍历算法,并输出原图结构及遍历结果。 分步实施: -To achieve the depth chart first, breadth-first traversal algorithm, and outputs the result through the structure and artwork. Step by step:
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:35.88kb
    • 提供者:窦增成
  1. Maze

    0下载:
  2. 基于栈和队列的迷宫程序 实现自动生成迷宫,一步一步演示迷宫解法的功能-Stack and queue based on automatically generated maze maze procedure, step by step demo features a maze solution
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1.85mb
    • 提供者:张子文
  1. a3003@04.02

    0下载:
  2. 本程序算法相对简单,可以申请一个2维数组,作为方格的抽象,本程序做了一个尝试,即将2维数组变为一维,但是仍然可以通过整数除法与模运算求得相应与2维数组的行列数值。本题算法其实是经典迷宫问题的一个变种。只是判断规则和行走规则有所出入。解决思想基本一致。现规定从当前点有4*step(step是最大步长)个选择(如果存在的话,否则到方格边界则不走);采用回溯遍历所有的情况,取得最大值输出。-The program algorithm is relatively simple, can apply fo
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1.7mb
    • 提供者:张飞
  1. Sort

    0下载:
  2. 用直接插入法对R排序 /用希尔排序法对数据表R排序,D为增量序列,元素个数n,步长序列个数numOfD 用冒泡排序法对R排序 用直接选择排序法对R排序 堆排序 对有序表a[0]--a[n-1]进行一次二路归并排序,每个有序子表的长度为k //一次二路归并排序后新的有序子表存于swap中 { 用二路归并排序法对对象数组a[0]--a[n-1]排序 {-Direct insertion method to sort the R/R Hill sorting the data table
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:2.2kb
    • 提供者:党心蕊
  1. TPS-cpp

    0下载:
  2. 针对TPS的简单贪心算法,可以实现对于TPS的分步解决,内容简单易懂,尤其针对打孔机生产效能提高进行特殊改进。-TPS simple greedy algorithm can achieve a step-by-step solution for TPS, simple and easy to understand, especially for the production efficiency of the drilling machine to improve special improv
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:3.63kb
    • 提供者:Robin
  1. EightDigital

    0下载:
  2. 八数码算法实现,带界面,可输入初始状态,逐步演示-Eight digital algorithm, with the interface, enter the initial state, step by step demonstration
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:54.77kb
    • 提供者:michael
  1. HeapSort

    0下载:
  2. 堆排序:利用堆进行排序操作,内有详细步骤说明。-Heap Sort: the heap sorting operation, with detailed step-by-step instructions.
  3. 所属分类:Data structs

    • 发布日期:2017-11-23
    • 文件大小:1.31kb
    • 提供者:sky
  1. sort-hfut8

    4下载:
  2. 合肥工业大学数据结构试验八排序 包括完整的实验要求、实验预习报告、实验最终报告 实验要求: <1>采用不同实验数据来观察快速排序的实验中比较和交换元素的次数,并分析数据的规模和初始特性与比较与交换次数之间的函数关系。 <2> 完成下面功能:将一个整型数组调整为这样的数组:所有3的倍数在最左边,所有除以3余1的数在中间,而所有除以3余2的数在最右边。要求算法的时间尽可能少。 <3> 实现shell排序算法,并观察
  3. 所属分类:Data structs

    • 发布日期:2017-11-02
    • 文件大小:662.17kb
    • 提供者:石帆
  1. The-tree-array

    0下载:
  2. 数据结构内容,讲解树状数组的具体内容,有详细的分析,步步深入。-Data structure content to explain the specific content of tree array, a detailed analysis of depth step by step.
  3. 所属分类:Data structs

    • 发布日期:2017-11-17
    • 文件大小:423.97kb
    • 提供者:Arthur
  1. UFApp

    0下载:
  2. write an application UFApp that 1. Prompts for a file name. 2. Reads the first integer, which is the number of sites. 3. Reads each pair of integers, p and q, representing sites and if not already connected, connects by calling union(p,q).
  3. 所属分类:Data structs

    • 发布日期:2017-05-10
    • 文件大小:1.98mb
    • 提供者:andy
« 12 »
搜珍网 www.dssz.com